ssb: Fix Sparse error in main
authorPramod Gurav <pramod.gurav@smartplayin.com>
Wed, 28 Jan 2015 05:49:47 +0000 (11:19 +0530)
committerKalle Valo <kvalo@codeaurora.org>
Thu, 29 Jan 2015 08:17:56 +0000 (10:17 +0200)
This change fixes below sparse error:
drivers/ssb/main.c:94:16: warning: symbol 'ssb_sdio_func_to_bus'
was not declared. Should it be static?

Acked-by: Michael Buesch <m@bues.ch>
Signed-off-by: Pramod Gurav <pramod.gurav@smartplayin.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
drivers/ssb/main.c

index 2fead3820849f028f34f2a84c5aa35d8a6f566fd..1e180c400f1721a45c34295d5b7b72f64e722107 100644 (file)
@@ -90,25 +90,6 @@ found:
 }
 #endif /* CONFIG_SSB_PCMCIAHOST */
 
-#ifdef CONFIG_SSB_SDIOHOST
-struct ssb_bus *ssb_sdio_func_to_bus(struct sdio_func *func)
-{
-       struct ssb_bus *bus;
-
-       ssb_buses_lock();
-       list_for_each_entry(bus, &buses, list) {
-               if (bus->bustype == SSB_BUSTYPE_SDIO &&
-                   bus->host_sdio == func)
-                       goto found;
-       }
-       bus = NULL;
-found:
-       ssb_buses_unlock();
-
-       return bus;
-}
-#endif /* CONFIG_SSB_SDIOHOST */
-
 int ssb_for_each_bus_call(unsigned long data,
                          int (*func)(struct ssb_bus *bus, unsigned long data))
 {
This page took 0.030185 seconds and 5 git commands to generate.