]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
usb: gadget: pxa27x_udc: fix warning in non device-tree build
authorRobert Jarzmik <robert.jarzmik@free.fr>
Wed, 29 Oct 2014 20:58:33 +0000 (21:58 +0100)
committerFelipe Balbi <balbi@ti.com>
Mon, 10 Nov 2014 23:19:33 +0000 (17:19 -0600)
The recent change bringing device-tree support triggers a warning in a
non device-tree build :
  drivers/usb/gadget/udc/pxa27x_udc.c:2405:28: warning: 'udc_pxa_dt_ids'
  defined but not used [-Wunused-variable]

Fix the warning with a preprocessor condition.

Signed-off-by: Robert Jarzmik <robert.jarzmik@free.fr>
Signed-off-by: Felipe Balbi <balbi@ti.com>
drivers/usb/gadget/udc/pxa27x_udc.c

index 69e7b816d880faf7e16d41ecffc435fd9d1675ea..9b03fab1370708e19f9dee7b0c2a1dde10539ed6 100644 (file)
@@ -2400,11 +2400,13 @@ static struct pxa_udc memory = {
        }
 };
 
+#if defined(CONFIG_OF)
 static struct of_device_id udc_pxa_dt_ids[] = {
        { .compatible = "marvell,pxa270-udc" },
        {}
 };
 MODULE_DEVICE_TABLE(of, udc_pxa_dt_ids);
+#endif
 
 /**
  * pxa_udc_probe - probes the udc device