diff options
author | Jens Scharsig <js_at_ng@scharsoft.de> | 2010-02-03 22:46:58 +0100 |
---|---|---|
committer | Tom Rix <Tom.Rix@windriver.com> | 2010-02-12 12:31:55 -0600 |
commit | 0cf0b93161beb3f3ed5e37e6112aedf15da17e8a (patch) | |
tree | b620b5a93d12d5039bc541be298165a7f06f2212 /drivers/usb | |
parent | 7f9e8633ac9c846e7e4f867507cbd5de1bd99e0c (diff) | |
download | u-boot-imx-0cf0b93161beb3f3ed5e37e6112aedf15da17e8a.zip u-boot-imx-0cf0b93161beb3f3ed5e37e6112aedf15da17e8a.tar.gz u-boot-imx-0cf0b93161beb3f3ed5e37e6112aedf15da17e8a.tar.bz2 |
convert common files to new SoC access
* add's a warning to all files, which need update to new SoC access
* convert common files in cpu/../at91 and a lot of drivers to use
c stucture SoC access
Signed-off-by: Jens Scharsig <js_at_ng@scharsoft.de>
Diffstat (limited to 'drivers/usb')
-rw-r--r-- | drivers/usb/host/ohci-at91.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/usb/host/ohci-at91.c b/drivers/usb/host/ohci-at91.c index 226859a..29f3ba1 100644 --- a/drivers/usb/host/ohci-at91.c +++ b/drivers/usb/host/ohci-at91.c @@ -25,6 +25,11 @@ #if defined(CONFIG_USB_OHCI_NEW) && defined(CONFIG_SYS_USB_OHCI_CPU_INIT) +#ifndef CONFIG_AT91_LEGACY +#define CONFIG_AT91_LEGACY +#warning Please update to use C structur SoC access ! +#endif + #include <asm/arch/hardware.h> #include <asm/arch/io.h> #include <asm/arch/at91_pmc.h> |