diff options
author | Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com> | 2014-07-28 15:29:31 +0900 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-08-09 11:17:01 -0400 |
commit | 5906fadefa7222ecca959ff3e3655eb8ecda88a4 (patch) | |
tree | 0416d9a74a35b16728996ad020dc10debb5048ca /include/configs | |
parent | ed7ce836cd7631fcb2e30fde4adc53b024f11f46 (diff) | |
download | u-boot-imx-5906fadefa7222ecca959ff3e3655eb8ecda88a4.zip u-boot-imx-5906fadefa7222ecca959ff3e3655eb8ecda88a4.tar.gz u-boot-imx-5906fadefa7222ecca959ff3e3655eb8ecda88a4.tar.bz2 |
usb: ehci: rmobile: Remove xHCI address
echi-rmobile does not support xHCI. This removes xHCI address
from address table. And this revise a value of CONFIG_USB_MAX_CONTROLLER_COUNT
for lager board and koelsh board.
Signed-off-by: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
Diffstat (limited to 'include/configs')
-rw-r--r-- | include/configs/koelsch.h | 2 | ||||
-rw-r--r-- | include/configs/lager.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/configs/koelsch.h b/include/configs/koelsch.h index 6795f28..3c2b613 100644 --- a/include/configs/koelsch.h +++ b/include/configs/koelsch.h @@ -171,7 +171,7 @@ /* USB */ #define CONFIG_USB_EHCI #define CONFIG_USB_EHCI_RMOBILE -#define CONFIG_USB_MAX_CONTROLLER_COUNT 3 +#define CONFIG_USB_MAX_CONTROLLER_COUNT 2 #define CONFIG_USB_STORAGE #endif /* __KOELSCH_H */ diff --git a/include/configs/lager.h b/include/configs/lager.h index f39a788..74c998f 100644 --- a/include/configs/lager.h +++ b/include/configs/lager.h @@ -175,7 +175,7 @@ /* USB */ #define CONFIG_USB_EHCI #define CONFIG_USB_EHCI_RMOBILE -#define CONFIG_USB_MAX_CONTROLLER_COUNT 4 +#define CONFIG_USB_MAX_CONTROLLER_COUNT 3 #define CONFIG_USB_STORAGE #endif /* __LAGER_H */ |