summaryrefslogtreecommitdiff
path: root/gusb/gusb-context.c
diff options
context:
space:
mode:
authorRichard Hughes <richard@hughsie.com>2015-01-05 15:57:56 +0000
committerRichard Hughes <richard@hughsie.com>2015-01-05 15:57:56 +0000
commit1475a82804db825ea56726287620449fb054feda (patch)
treeb66ef0aca7d1e07e1bd4f0e33c55492ff6a48aab /gusb/gusb-context.c
parent57b4a061eb31e35bfa69bb3b8f538c483451d940 (diff)
downloadgusb-1475a82804db825ea56726287620449fb054feda.tar.gz
Generate the platform ID in the device itself
It's just cleaner this way.
Diffstat (limited to 'gusb/gusb-context.c')
-rw-r--r--gusb/gusb-context.c25
1 files changed, 1 insertions, 24 deletions
diff --git a/gusb/gusb-context.c b/gusb/gusb-context.c
index 68668e7..d952f5c 100644
--- a/gusb/gusb-context.c
+++ b/gusb/gusb-context.c
@@ -268,28 +268,11 @@ g_usb_context_emit_device_remove (GUsbContext *context,
}
static void
-g_usb_context_build_platform_id (GString *str,
- libusb_device *dev)
-{
- libusb_device *parent;
- parent = libusb_get_parent (dev);
- if (parent != NULL)
- g_usb_context_build_platform_id (str, parent);
- if (str->len == 0) {
- g_string_append_printf (str, "%02x:",
- libusb_get_bus_number (dev));
- }
- g_string_append_printf (str, "%02x:",
- libusb_get_port_number (dev));
-}
-
-static void
g_usb_context_add_device (GUsbContext *context,
struct libusb_device *dev)
{
GUsbDevice *device = NULL;
GUsbContextPrivate *priv = context->priv;
- GString *platform_id = NULL;
guint8 bus;
guint8 address;
GError *error = NULL;
@@ -305,13 +288,8 @@ g_usb_context_add_device (GUsbContext *context,
goto out;
}
- /* build a topology of the device */
- platform_id = g_string_new ("usb:");
- g_usb_context_build_platform_id (platform_id, dev);
- g_string_truncate (platform_id, platform_id->len - 1);
-
/* add the device */
- device = _g_usb_device_new (context, dev, platform_id->str, &error);
+ device = _g_usb_device_new (context, dev, &error);
if (device == NULL) {
g_debug ("There was a problem creating the device: %s",
error->message);
@@ -323,7 +301,6 @@ g_usb_context_add_device (GUsbContext *context,
out:
if (device != NULL)
g_object_unref (device);
- g_string_free (platform_id, TRUE);
}
static void