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/i2c/soft_i2c.c | |
| parent | 7f9e8633ac9c846e7e4f867507cbd5de1bd99e0c (diff) | |
| download | olio-uboot-2014.01-0cf0b93161beb3f3ed5e37e6112aedf15da17e8a.tar.xz olio-uboot-2014.01-0cf0b93161beb3f3ed5e37e6112aedf15da17e8a.zip | |
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/i2c/soft_i2c.c')
| -rw-r--r-- | drivers/i2c/soft_i2c.c | 11 | 
1 files changed, 6 insertions, 5 deletions
| diff --git a/drivers/i2c/soft_i2c.c b/drivers/i2c/soft_i2c.c index 9a4878391..e0cf1e10d 100644 --- a/drivers/i2c/soft_i2c.c +++ b/drivers/i2c/soft_i2c.c @@ -30,14 +30,15 @@  #include <ioports.h>  #include <asm/io.h>  #endif -#ifdef	CONFIG_AT91RM9200		/* need this for the at91rm9200 */ +#if defined(CONFIG_AT91RM9200) || \ +	defined(CONFIG_AT91SAM9260) ||  defined(CONFIG_AT91SAM9261) || \ +	defined(CONFIG_AT91SAM9263)  #include <asm/io.h>  #include <asm/arch/hardware.h> -#endif -#ifdef CONFIG_AT91SAM9263		/* only valid for AT91SAM9263 */ -#include <asm/arch/at91_pmc.h> +#include <asm/arch/at91_pio.h> +#ifdef CONFIG_AT91_LEGACY  #include <asm/arch/gpio.h> -#include <asm/arch/io.h> +#endif  #endif  #ifdef	CONFIG_IXP425			/* only valid for IXP425 */  #include <asm/arch/ixp425.h> |