our global '_omap' pointer wasn't marked
static. This patch solves the following sparse
warning:

        warning: symbol '_omap' was not declared. \
        Should it be static?

Signed-off-by: Felipe Balbi <ba...@ti.com>
---
 drivers/usb/dwc3/dwc3-omap.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/usb/dwc3/dwc3-omap.c b/drivers/usb/dwc3/dwc3-omap.c
index 2fe9723f..6de734f 100644
--- a/drivers/usb/dwc3/dwc3-omap.c
+++ b/drivers/usb/dwc3/dwc3-omap.c
@@ -126,7 +126,7 @@ struct dwc3_omap {
        u32                     dma_status:1;
 };
 
-struct dwc3_omap               *_omap;
+static struct dwc3_omap                *_omap;
 
 static inline u32 dwc3_omap_readl(void __iomem *base, u32 offset)
 {
-- 
1.8.1.rc1.5.g7e0651a

--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to