From mboxrd@z Thu Jan 1 00:00:00 1970 From: Daniel Gorsulowski Date: Wed, 10 Feb 2010 12:25:46 +0100 Subject: [U-Boot] [PATCH 5/9 V4] convert common files to new SoC access In-Reply-To: <4B69EED2.8040604@scharsoft.de> References: <4B5AD783.7080904@scharsoft.de> <4B69EED2.8040604@scharsoft.de> Message-ID: <4B7297BA.8080001@esd.eu> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hello Jens, Jens Scharsig wrote: > * 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 > diff --git a/drivers/i2c/soft_i2c.c b/drivers/i2c/soft_i2c.c > index 9a48783..e0cf1e1 100644 > --- a/drivers/i2c/soft_i2c.c > +++ b/drivers/i2c/soft_i2c.c > @@ -30,14 +30,15 @@ > #include > #include > #endif > -#ifdef CONFIG_AT91RM9200 /* need this for the at91rm9200 */ > +#if defined(CONFIG_AT91RM9200) || \ > + defined(CONFIG_AT91SAM9260) || defined(CONFIG_AT91SAM9261) || \ > + defined(CONFIG_AT91SAM9263) > #include > #include > -#endif > -#ifdef CONFIG_AT91SAM9263 /* only valid for AT91SAM9263 */ > -#include Please don't remove this include. It breaks build on AT91SAM9263 boards who have CONFIG_AT91_LEGACY enabled. (e.g. new otc570 board) > +#include > +#ifdef CONFIG_AT91_LEGACY > #include > -#include dito > +#endif > #endif > #ifdef CONFIG_IXP425 /* only valid for IXP425 */ > #include Best regards, Daniel Gorsulowski