summaryrefslogtreecommitdiff
path: root/drivers/staging/greybus/interface.c
diff options
context:
space:
mode:
authorJohan Hovold <johan@hovoldconsulting.com>2016-03-09 12:20:41 +0100
committerGreg Kroah-Hartman <gregkh@google.com>2016-03-10 13:57:42 -0800
commit66d674cfafb2be4002265e6081a1580d0ea461f7 (patch)
treec8746898026d2ebd5fa07c5be0bdf853e83f35be /drivers/staging/greybus/interface.c
parent64acb6611f3c17251347870e73ddc106fed807cb (diff)
greybus: interface: move interface-removal helper
Move helper to remove all interfaces of a host-device to the svc code and call it when removing the svc device as this needs to be coordinated with flushing the SVC work queue. Signed-off-by: Johan Hovold <johan@hovoldconsulting.com> Reviewed-by: Jeffrey Carlyle <jcarlyle@google.com> Reviewed-by: Viresh Kumar <viresh.kumar@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
Diffstat (limited to 'drivers/staging/greybus/interface.c')
-rw-r--r--drivers/staging/greybus/interface.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/drivers/staging/greybus/interface.c b/drivers/staging/greybus/interface.c
index 4671f4092a17..ebf008161120 100644
--- a/drivers/staging/greybus/interface.c
+++ b/drivers/staging/greybus/interface.c
@@ -167,14 +167,6 @@ void gb_interface_remove(struct gb_interface *intf)
put_device(&intf->dev);
}
-void gb_interfaces_remove(struct gb_host_device *hd)
-{
- struct gb_interface *intf, *temp;
-
- list_for_each_entry_safe(intf, temp, &hd->interfaces, links)
- gb_interface_remove(intf);
-}
-
/*
* Intialise an interface by enabling the control connection and fetching the
* manifest and other information over it.