summaryrefslogtreecommitdiff
path: root/drivers/staging/greybus/loopback.c
diff options
context:
space:
mode:
authorJohan Hovold <johan@hovoldconsulting.com>2015-11-25 15:59:04 +0100
committerGreg Kroah-Hartman <gregkh@google.com>2015-11-25 15:27:06 -0800
commit8b0df4b2eaf2f741ae44e8f5bad4ecb223f87932 (patch)
treed41ab2630f80140f4ddbed6cd33cc7988347d1a7 /drivers/staging/greybus/loopback.c
parent582b3a13920c71ca6e546598d344dc6027168e64 (diff)
greybus: interface: make interfaces children of host devices
Make interfaces child devices of host devices. The new interface device name is "<bus_id>-<intf_id>", where bus_id is the dynamically allocated bus id for the host device and intf_id is the svc-allocated interface id. Signed-off-by: Johan Hovold <johan@hovoldconsulting.com> Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
Diffstat (limited to 'drivers/staging/greybus/loopback.c')
-rw-r--r--drivers/staging/greybus/loopback.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/staging/greybus/loopback.c b/drivers/staging/greybus/loopback.c
index 0c38414a3e06..ededfef40e9c 100644
--- a/drivers/staging/greybus/loopback.c
+++ b/drivers/staging/greybus/loopback.c
@@ -878,12 +878,6 @@ static int gb_loopback_bus_id_compare(void *priv, struct list_head *lha,
struct gb_connection *ca = a->connection;
struct gb_connection *cb = b->connection;
- if (ca->bundle->intf->module->module_id <
- cb->bundle->intf->module->module_id)
- return -1;
- if (cb->bundle->intf->module->module_id <
- ca->bundle->intf->module->module_id)
- return 1;
if (ca->bundle->intf->interface_id < cb->bundle->intf->interface_id)
return -1;
if (cb->bundle->intf->interface_id < ca->bundle->intf->interface_id)