usb: gadget: fix pxa25x compilation problems
In commit
88f718e3fa
"ARM: pxa: delete the custom GPIO header"
we removed the implicit inclusion of <mach/gpio.h>
from <linux/gpio.h>.
The pxa25x_udc was not using that, but it was relying
on <linux/gpio.h> to implictly include <mach/gpio.h>
which in turn implicitly included <mach/hardware.h>,
which was needed for the driver to compile.
Fix this up by explicitly including the necessary
<mach/hardware.h> header.
Reported-by: Russell King <linux@arm.linux.org.uk>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Felipe Balbi <balbi@ti.com>
This commit is contained in:
parent
d18f7116a5
commit
b144e4ab1e
1 changed files with 1 additions and 0 deletions
|
@ -54,6 +54,7 @@
|
|||
*/
|
||||
#ifdef CONFIG_ARCH_PXA
|
||||
#include <mach/pxa25x-udc.h>
|
||||
#include <mach/hardware.h>
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_ARCH_LUBBOCK
|
||||
|
|
Loading…
Reference in a new issue