diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2015-09-13 13:06:44 -0300 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2015-09-20 09:47:59 +0200 |
commit | 0df2f01d42409da80799a0dbe6f08c673c13f93d (patch) | |
tree | 9820d5358aea5c6817feb08802ca7b468f9d2f34 /board | |
parent | b7d4db2f9638bdbb5b135838ac88042a3f4a5266 (diff) | |
download | u-boot-imx-0df2f01d42409da80799a0dbe6f08c673c13f93d.zip u-boot-imx-0df2f01d42409da80799a0dbe6f08c673c13f93d.tar.gz u-boot-imx-0df2f01d42409da80799a0dbe6f08c673c13f93d.tar.bz2 |
mx7dsabresd: Include USB header
Include <usb/ehci-fsl.h> in order to fix the following sparse warning:
board/freescale/mx7dsabresd/mx7dsabresd.c:538:5: warning: symbol 'board_ehci_hcd_init' was not declared. Should it be static?
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/freescale/mx7dsabresd/mx7dsabresd.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/board/freescale/mx7dsabresd/mx7dsabresd.c b/board/freescale/mx7dsabresd/mx7dsabresd.c index 15a1daf..d7e4589 100644 --- a/board/freescale/mx7dsabresd/mx7dsabresd.c +++ b/board/freescale/mx7dsabresd/mx7dsabresd.c @@ -24,6 +24,7 @@ #include <i2c.h> #include <asm/imx-common/mxc_i2c.h> #include <asm/arch/crm_regs.h> +#include <usb/ehci-fsl.h> DECLARE_GLOBAL_DATA_PTR; |