[PATCH 7/7] dm9200: use "struct resource" instead of platform_data

Jean-Christophe PLAGNIOL-VILLARD plagnioj at jcrosoft.com
Mon Jul 18 00:36:56 EDT 2011


On 17:28 Sun 17 Jul     , Sascha Hauer wrote:
> On Sat, Jul 16, 2011 at 12:45:32PM +0200, Jean-Christophe PLAGNIOL-VILLARD wrote:
> > drop iobase and iodata in favor of resources
> > 
> > Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj at jcrosoft.com>
> > Cc: Nicolas Ferre <nicolas.ferre at atmel.com>
> > Cc: Patrice Vilchez <patrice.vilchez at atmel.com>
> > ---
> >  arch/arm/boards/at91sam9261ek/init.c            |    8 +++++---
> >  arch/arm/boards/mini2440/env/welcome_en.bmp.lzo |  Bin 0 -> 26285 bytes
> >  arch/arm/boards/mini2440/mini2440.c             |   17 +++++++++++++----
> >  arch/arm/boards/pm9261/init.c                   |    8 +++++---
> >  arch/arm/boards/scb9328/scb9328.c               |   23 ++++++++++++++++-------
> >  drivers/net/dm9000.c                            |   10 ++++++++--
> >  include/dm9000.h                                |    2 --
> >  7 files changed, 47 insertions(+), 21 deletions(-)
> >  create mode 100644 arch/arm/boards/mini2440/env/welcome_en.bmp.lzo
> > 
> > diff --git a/arch/arm/boards/at91sam9261ek/init.c b/arch/arm/boards/at91sam9261ek/init.c
> > index 3def38e..4e52ab8 100644
> > --- a/arch/arm/boards/at91sam9261ek/init.c
> > +++ b/arch/arm/boards/at91sam9261ek/init.c
> > @@ -89,8 +89,6 @@ static void ek_add_device_nand(void)
> >   */
> >  #if defined(CONFIG_DRIVER_NET_DM9000)
> >  static struct dm9000_platform_data dm9000_data = {
> > -	.iobase		= AT91_CHIPSELECT_2,
> > -	.iodata		= AT91_CHIPSELECT_2 + 4,
> >  	.buswidth	= DM9000_WIDTH_16,
> >  	.srom		= 0,
> >  };
> > @@ -98,7 +96,11 @@ static struct dm9000_platform_data dm9000_data = {
> >  static struct resource dm9000_resources[] = {
> >  	[0] = {
> >  		.start	= AT91_CHIPSELECT_2,
> > -		.size	= 8,
> > +		.size	= 4,
> > +	},
> > +	[1] = {
> > +		.start	= AT91_CHIPSELECT_2 + 4,
> > +		.size	= 4,
> >  	},
> >  };
> >  
> > diff --git a/arch/arm/boards/mini2440/env/welcome_en.bmp.lzo b/arch/arm/boards/mini2440/env/welcome_en.bmp.lzo
> 
> Ups ;)
Yeah ups

Best Regards,
J.



More information about the barebox mailing list