diff options
author | Aaro Koskinen <aaro.koskinen@iki.fi> | 2013-03-05 12:04:24 +0100 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2013-03-05 12:28:32 +0100 |
commit | 4b58ed11c681c0779c330f1aa5307b594943b683 (patch) | |
tree | 037d0e446549e83bc4313461ea767517bc8777c1 /drivers | |
parent | usb: musb: omap2430: fix omap_musb_mailbox glue check again (diff) | |
download | linux-4b58ed11c681c0779c330f1aa5307b594943b683.tar.xz linux-4b58ed11c681c0779c330f1aa5307b594943b683.zip |
usb: musb: omap2430: fix sparse warning
Fix the following sparse warning:
drivers/usb/musb/omap2430.c:54:33: warning: symbol '_glue' was not \
declared. Should it be static?
Signed-off-by: Aaro Koskinen <aaro.koskinen@iki.fi>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/usb/musb/omap2430.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/musb/omap2430.c b/drivers/usb/musb/omap2430.c index 2a39c110d3d5..1a42a458f2c4 100644 --- a/drivers/usb/musb/omap2430.c +++ b/drivers/usb/musb/omap2430.c @@ -51,7 +51,7 @@ struct omap2430_glue { }; #define glue_to_musb(g) platform_get_drvdata(g->musb) -struct omap2430_glue *_glue; +static struct omap2430_glue *_glue; static struct timer_list musb_idle_timer; |