Re: [U-Boot-Users] [PATCH] ide arm support

2008-02-12 Thread michael
Hi, > On Mon, Feb 11, 2008 at 10:58:23PM +0100, michael wrote: > >> The code is fill with ugly ifdef. >> > > That probably shouldn't be read as permission to add a few more... > > :(, ok >> Can you suggest me something better? >> > > Implement outsw for arm? > > ladis > > I

Re: [U-Boot-Users] [PATCH] ide arm support

2008-02-12 Thread Ladislav Michl
On Mon, Feb 11, 2008 at 10:58:23PM +0100, michael wrote: > The code is fill with ugly ifdef. That probably shouldn't be read as permission to add a few more... > Can you suggest me something better? Implement outsw for arm? ladis

[U-Boot-Users] [PATCH] ide arm support rev 1

2008-02-11 Thread michael
Add ide support to the arm cpu. Tested on little endian machine. Include #define __io in config board file. Signed-off-by: Michael Trimarchi <[EMAIL PROTECTED]> --- diff --git a/common/cmd_ide.c b/common/cmd_ide.c index c38be4f..e507c15 100644 --- a/common/cmd_ide.c +++ b/common/cmd_ide.c @@ -934

Re: [U-Boot-Users] [PATCH] ide arm support

2008-02-11 Thread michael
Jean-Christophe PLAGNIOL-VILLARD wrote: > On 21:40 Mon 11 Feb , michael wrote: > >> Add ide support to the arm cpu. Tested on arm little endian >> machine. Include #define __io in config board file. >> >> Signed-off-by: Michael Trimarchi <[EMAIL PROTECTED]> >> --- >> >> diff --git a/common/c

Re: [U-Boot-Users] [PATCH] ide arm support

2008-02-11 Thread michael
Hi > On Mon, Feb 11, 2008 at 10:30:08PM +0100, Jean-Christophe PLAGNIOL-VILLARD > wrote: > >> On 21:40 Mon 11 Feb , michael wrote: >> >>> --- a/common/cmd_ide.c >>> +++ b/common/cmd_ide.c >>> @@ -934,7 +934,14 @@ output_data(int dev, ulong *sect_buf, int words) >>> static void >>> ou

Re: [U-Boot-Users] [PATCH] ide arm support

2008-02-11 Thread Ladislav Michl
On Mon, Feb 11, 2008 at 10:30:08PM +0100, Jean-Christophe PLAGNIOL-VILLARD wrote: > On 21:40 Mon 11 Feb , michael wrote: > > --- a/common/cmd_ide.c > > +++ b/common/cmd_ide.c > > @@ -934,7 +934,14 @@ output_data(int dev, ulong *sect_buf, int words) > > static void > > output_data(int dev, ul

Re: [U-Boot-Users] [PATCH] ide arm support

2008-02-11 Thread Jean-Christophe PLAGNIOL-VILLARD
On 21:40 Mon 11 Feb , michael wrote: > Add ide support to the arm cpu. Tested on arm little endian > machine. Include #define __io in config board file. > > Signed-off-by: Michael Trimarchi <[EMAIL PROTECTED]> > --- > > diff --git a/common/cmd_ide.c b/common/cmd_ide.c > index c38be4f..e507c15

[U-Boot-Users] [PATCH] ide arm support

2008-02-11 Thread michael
Add ide support to the arm cpu. Tested on arm little endian machine. Include #define __io in config board file. Signed-off-by: Michael Trimarchi <[EMAIL PROTECTED]> --- diff --git a/common/cmd_ide.c b/common/cmd_ide.c index c38be4f..e507c15 100644 --- a/common/cmd_ide.c +++ b/common/cmd_ide.c @@