diff options
| author | Anatolij Gustschin <agust@denx.de> | 2010-10-21 18:30:35 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2010-10-21 20:00:41 +0200 | 
| commit | fff6ec382c139eb242bd85356e66a0bc43becb63 (patch) | |
| tree | c6522510c0f2cecd1c4a339fac5c77d6538da48f | |
| parent | c62491d2602b353a815a909e27eec0df9f2c06a2 (diff) | |
| download | olio-uboot-2014.01-fff6ec382c139eb242bd85356e66a0bc43becb63.tar.xz olio-uboot-2014.01-fff6ec382c139eb242bd85356e66a0bc43becb63.zip | |
Fix building for 83xx boards with USB support
Commit 29c6fbe0471afd7ffa41fcb2103eec5b53294897 broke
building for 83xx boards with USB support:
ehci-fsl.c: In function 'ehci_hcd_init':
ehci-fsl.c:43: error: 'CONFIG_SYS_FSL_USB_ADDR' undeclared (first use in this function)
ehci-fsl.c:43: error: (Each undeclared identifier is reported only once
ehci-fsl.c:43: error: for each function it appears in.)
make[1]: *** [ehci-fsl.o] Error 1
Signed-off-by: Anatolij Gustschin <agust@denx.de>
| -rw-r--r-- | include/usb/ehci-fsl.h | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/include/usb/ehci-fsl.h b/include/usb/ehci-fsl.h index 08691a0f2..67600ed52 100644 --- a/include/usb/ehci-fsl.h +++ b/include/usb/ehci-fsl.h @@ -161,7 +161,7 @@  #define MPC83XX_SCCR_USB_DRCM_01	0x00100000  #define MPC83XX_SCCR_USB_DRCM_10	0x00200000 -#if defined(CONFIG_MPC83XX) +#if defined(CONFIG_MPC83xx)  #define CONFIG_SYS_FSL_USB_ADDR CONFIG_SYS_MPC83xx_USB_ADDR  #elif defined(CONFIG_MPC85xx)  #define CONFIG_SYS_FSL_USB_ADDR CONFIG_SYS_MPC85xx_USB_ADDR |