[PATCHv2] mci: omap: Fix default value of mci.f_max

2013-10-01 Thread Teresa Gámez
With commit c2ef47887 mci.f_max default value is only set when pdata is available. Fix this with always setting the mci.f_max default value and overrite it when pdata available. Signed-off-by: Teresa Gámez --- changes in v2: - set default value always and overwrite it when pdata available - upd

Re: [PATCH 0/4] Add support for Voipac X53-DMM-668 module

2013-10-01 Thread Jean-Christophe PLAGNIOL-VILLARD
On 06:31 Wed 02 Oct , Jean-Christophe PLAGNIOL-VILLARD wrote: > On 23:35 Tue 01 Oct , Rostislav Lisovy wrote: > > This patchset adds support for Voipac X53-DMM-668 module equipped > > with i.mx53 CPU. More info about the module may be found at: > > http://www.voipac.com/#X53-DMM-668 > > >

Re: [PATCH 0/4] Add support for Voipac X53-DMM-668 module

2013-10-01 Thread Jean-Christophe PLAGNIOL-VILLARD
On 23:35 Tue 01 Oct , Rostislav Lisovy wrote: > This patchset adds support for Voipac X53-DMM-668 module equipped > with i.mx53 CPU. More info about the module may be found at: > http://www.voipac.com/#X53-DMM-668 > > The board specific code enables UART0, NAND flash, Ethernet. > The flash_hea

Re: [PATCH 1/4] i.mx53: voipac: Change machine type identifier

2013-10-01 Thread Jean-Christophe PLAGNIOL-VILLARD
On 23:35 Tue 01 Oct , Rostislav Lisovy wrote: > Signed-off-by: Rostislav Lisovy > > > diff --git a/arch/arm/tools/mach-types b/arch/arm/tools/mach-types > index 325513f..b4c8228 100644 > --- a/arch/arm/tools/mach-types > +++ b/arch/arm/tools/mach-types > @@ -3314,7 +3314,7 @@ dimm_imx28

Re: [PATCH 2/4] i.mx53: voipac: Add board specific + flash header constructing code

2013-10-01 Thread Jean-Christophe PLAGNIOL-VILLARD
On 23:35 Tue 01 Oct , Rostislav Lisovy wrote: > In board.c enable UART0, NAND flash, Ethernet. > The DCD in flash_header.c is very similar (except for one line) > to that from freescale-mx53-smd > > Signed-off-by: Rostislav Lisovy > --- > create mode 100644 arch/arm/boards/freescale-mx53-voi

[PATCH 2/4] i.mx53: voipac: Add board specific + flash header constructing code

2013-10-01 Thread Rostislav Lisovy
In board.c enable UART0, NAND flash, Ethernet. The DCD in flash_header.c is very similar (except for one line) to that from freescale-mx53-smd Signed-off-by: Rostislav Lisovy --- create mode 100644 arch/arm/boards/freescale-mx53-voipac/Makefile create mode 100644 arch/arm/boards/freescale-mx53-

[PATCH 0/4] Add support for Voipac X53-DMM-668 module

2013-10-01 Thread Rostislav Lisovy
This patchset adds support for Voipac X53-DMM-668 module equipped with i.mx53 CPU. More info about the module may be found at: http://www.voipac.com/#X53-DMM-668 The board specific code enables UART0, NAND flash, Ethernet. The flash_header.c containing DCD configuration data is almost the same (ex

[PATCH 1/4] i.mx53: voipac: Change machine type identifier

2013-10-01 Thread Rostislav Lisovy
Signed-off-by: Rostislav Lisovy diff --git a/arch/arm/tools/mach-types b/arch/arm/tools/mach-types index 325513f..b4c8228 100644 --- a/arch/arm/tools/mach-types +++ b/arch/arm/tools/mach-types @@ -3314,7 +3314,7 @@ dimm_imx28MACH_DIMM_IMX28 DIMM_IMX28 3355

[PATCH 4/4] i.mx53: voipac: Modify Make- and config-files to enable building of mx53-voipac

2013-10-01 Thread Rostislav Lisovy
Signed-off-by: Rostislav Lisovy diff --git a/arch/arm/boards/Makefile b/arch/arm/boards/Makefile index 2e924fd..8070de9 100644 --- a/arch/arm/boards/Makefile +++ b/arch/arm/boards/Makefile @@ -35,6 +35,7 @@ obj-$(CONFIG_MACH_FREESCALE_MX35_3STACK) += freescale-mx35-3-stack/ obj-$(CONFIG_M

[PATCH 3/4] i.mx53: voipac: Add barebox environment configuration file

2013-10-01 Thread Rostislav Lisovy
Signed-off-by: Rostislav Lisovy --- create mode 100644 arch/arm/boards/freescale-mx53-voipac/env/config diff --git a/arch/arm/boards/freescale-mx53-voipac/env/config b/arch/arm/boards/freescale-mx53-voipac/env/config new file mode 100644 index 000..59432d7 --- /dev/null +++ b/arch/arm/board

Re: [PATCH 5/6] ARM: vexpress: Fix compiler warning

2013-10-01 Thread Jean-Christophe PLAGNIOL-VILLARD
On 08:22 Tue 01 Oct , Sascha Hauer wrote: > Fixes: > > arch/arm/boards/vexpress/init.c: In function 'vexpress_core_init': > arch/arm/boards/vexpress/init.c:139:22: warning: 'hostname' may be used > uninitialized in this function [-Wmaybe-uninitialized] > > Signed-off-by: Sascha Hauer > ---

Re: [PATCH 3/6] ARM: mx23-evk: Fix result checking of devfs_add_partition

2013-10-01 Thread Uwe Kleine-König
Hello Sascha, On Tue, Oct 01, 2013 at 08:22:05AM +0200, Sascha Hauer wrote: > + if (IS_ERR(cdev)) > + return PTR_ERR(cdev); > + return 0; In Linux you can use return PTR_ERR_OR_ZERO(cdev) instead. Didn't check if barebox already has that. Best regards Uwe -- Pengut