Allow this symbol to be exported and usable from external plugins. --- src/adapter.c | 2 +- src/device.c | 2 +- src/device.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/adapter.c b/src/adapter.c index 9600803..ec15715 100644 --- a/src/adapter.c +++ b/src/adapter.c @@ -2537,7 +2537,7 @@ static void load_devices(struct btd_adapter *adapter) /* TODO: register services from pre-loaded list of primaries */ - list = device_get_uuids(device); + list = btd_device_get_uuids(device); if (list) device_probe_profiles(device, list); diff --git a/src/device.c b/src/device.c index 58f24bf..4ff8a14 100644 --- a/src/device.c +++ b/src/device.c @@ -2474,7 +2474,7 @@ static gboolean record_has_uuid(const sdp_record_t *rec, return FALSE; } -GSList *device_get_uuids(struct btd_device *device) +GSList *btd_device_get_uuids(struct btd_device *device) { return device->uuids; } diff --git a/src/device.h b/src/device.h index 44bee3e..a0d25fe 100644 --- a/src/device.h +++ b/src/device.h @@ -46,7 +46,7 @@ uint16_t btd_device_get_version(struct btd_device *device); void device_remove(struct btd_device *device, gboolean remove_stored); int device_address_cmp(gconstpointer a, gconstpointer b); int device_bdaddr_cmp(gconstpointer a, gconstpointer b); -GSList *device_get_uuids(struct btd_device *device); +GSList *btd_device_get_uuids(struct btd_device *device); void device_probe_profiles(struct btd_device *device, GSList *profiles); const sdp_record_t *btd_device_get_record(struct btd_device *device, const char *uuid); -- 1.8.4.4 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html