Re: [U-Boot] [PATCH] serial: mxs_auart: Staticize local functions

2013-10-15 Thread Axel Lin
2013/10/15 Marek Vasut : > Dear Axel Lin, > >> Staticize local functions in mxs_auart driver. >> >> Signed-off-by: Axel Lin > > Acked-by: Marek Vasut > > Just curious, how did you find this? Did you lint the files with some tool? I just read the code. Regards, Axel __

[U-Boot] [PATCH 1/2] serial: xuartlite: Staticize local functions

2013-10-15 Thread Axel Lin
Staticize local functions in xuartlite driver. Signed-off-by: Axel Lin --- drivers/serial/serial_xuartlite.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/serial/serial_xuartlite.c b/drivers/serial/serial_xuartlite.c index 9c1d025..daaf155 100644 --- a/driv

[U-Boot] [PATCH 2/2] serial: s5p: Staticize local functions

2013-10-15 Thread Axel Lin
Staticize local functions in s5p serial driver. Signed-off-by: Axel Lin --- drivers/serial/serial_s5p.c | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/drivers/serial/serial_s5p.c b/drivers/serial/serial_s5p.c index f98b422..13ced26 100644 --- a/drivers/serial/se

[U-Boot] [PATCH v2 1/2] serial: xuartlite: Staticize local functions

2013-10-15 Thread Axel Lin
Staticize local functions in xuartlite driver. Signed-off-by: Axel Lin --- v2: Also staticize userial##port##_* functions drivers/serial/serial_xuartlite.c | 20 ++-- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/drivers/serial/serial_xuartlite.c b/drivers/ser

[U-Boot] [PATCH v2 2/2] serial: s5p: Staticize local functions

2013-10-15 Thread Axel Lin
Staticize local functions in s5p serial driver. Signed-off-by: Axel Lin --- v2: Also staticize s5p_serial##port##_* functions drivers/serial/serial_s5p.c | 24 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/drivers/serial/serial_s5p.c b/drivers/serial/s

[U-Boot] [PATCH 1/3] i2c: eliminate warnings in i2c_reloc_fixup function

2013-10-15 Thread Masahiro Yamada
The prototype of handlers had changed. This commit uses cast with (void *) rather than the handler-specific prototype. Signed-off-by: Masahiro Yamada --- Note: The body of i2c_reloc_fixup function is surrounded by #if defined(CONFIG_NEEDS_MANUAL_RELOC) ... #endif avr32, m68k, nds32, sparc def

[U-Boot] [PATCH 2/3] m68k: eliminate warnings in do_bootm_linux function

2013-10-15 Thread Masahiro Yamada
- delete an unused variable - set forcibly some variables to zero Signed-off-by: Masahiro Yamada --- *** CAUTION *** I do not think I am doing right thing. (I post this patch just to raise the flag.) Experts of M68K architecture, please fix this correctly. arch/m68k/lib/bootm.c | 7 ++

[U-Boot] [PATCH 3/3] m68k: eliminate a warning in cpu_init

2013-10-15 Thread Masahiro Yamada
Signed-off-by: Masahiro Yamada --- arch/m68k/cpu/mcf5445x/cpu_init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/m68k/cpu/mcf5445x/cpu_init.c b/arch/m68k/cpu/mcf5445x/cpu_init.c index 9c324dc..b4a8eef 100644 --- a/arch/m68k/cpu/mcf5445x/cpu_init.c +++ b/arch/m68k/cpu

[U-Boot] [PATCH 0/3] All M68K boards are broken

2013-10-15 Thread Masahiro Yamada
Hello. Even after applying the patch "config.mk: fix -fstack-usage support test" (http://patchwork.ozlabs.org/patch/283619/), I still cannot compile m68k correctly. The result of `CROSS_COMPILE=m68k-linux- ./MAKEALL -a m68k` is - SUMMARY

[U-Boot] [PATCH] powerpc/t1040: Update defines to support T1040SoC personalities

2013-10-15 Thread Priyanka Jain
T1040 Soc has four personalities: -T1040 (4 cores with L2 switch) -T1042:Reduced personality of T1040 without L2 switch -T1020:Reduced personality of T1040 with less cores(2 cores) -T1022:Reduced personality of T1040 with 2 cores and without L2 switch Update defines in config_mpc85xx.h and immap_8

Re: [U-Boot] [PATCH v2 2/2] serial: s5p: Staticize local functions

2013-10-15 Thread Minkyu Kang
On 16/10/13 10:47, Axel Lin wrote: > Staticize local functions in s5p serial driver. > > Signed-off-by: Axel Lin > --- > v2: Also staticize s5p_serial##port##_* functions > > drivers/serial/serial_s5p.c | 24 > 1 file changed, 12 insertions(+), 12 deletions(-) Acked-by

Re: [U-Boot] [PATCH] spi: mxc: Fix data loss for non aligned write buffers.

2013-10-15 Thread Jagan Teki
Hi, On Tue, Oct 15, 2013 at 11:27 PM, Martin Fuzzey wrote: > When writing buffers that are not 32 bit aligned data loss occurs. > > This can also occur when the total transfer size is not a multiple of 4 bytes > since the extra bytes are written first causing the rest to be unaligned. > > This ca

Re: [U-Boot] [PATCH] mtd: fix warnings due to 64-bit partition support

2013-10-15 Thread Stefan Roese
Hi Scott, On 16.10.2013 00:41, Scott Wood wrote: > commit 39ac34473f3c96e77cbe03a49141771ed1639486 ("cmd_mtdparts: use 64 > bits for flash size, partition size & offset") introduced warnings > in a couple places due to printf formats or pointer casting. > > This patch fixes the warnings pointed o

Re: [U-Boot] u-boot-xlnx 'master-next' branch: usb not working for microzed

2013-10-15 Thread Oleg Dzhimiev
Thanks to Michal - in the u-boot-xlnx/master-next (vs /master) the following lines were removed: board/xilinx/zynq/board.c: - /* temporary hack to take USB out of reset til the is fixed -* in Linux -*/ - writel(0x80, 0xe000a204); - writel(0x80, 0xe000a208); -

Re: [U-Boot] [PATCH v2 1/2] serial: xuartlite: Staticize local functions

2013-10-15 Thread Stefan Roese
On 16.10.2013 03:45, Axel Lin wrote: > Staticize local functions in xuartlite driver. > > Signed-off-by: Axel Lin Acked-by: Stefan Roese Thanks, Stefan ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] u-boot-xlnx 'master-next' branch: usb not working for microzed

2013-10-15 Thread Michal Simek
On 10/16/2013 08:18 AM, Oleg Dzhimiev wrote: > Thanks to Michal - in the u-boot-xlnx/master-next (vs /master) the following > lines were removed: > board/xilinx/zynq/board.c: > - /* temporary hack to take USB out of reset til the is fixed > - * in Linux > - */ > - writel(0x80, 0xe

Re: [U-Boot] [PATCH v3 11/11] mpc85xx: introduce the kmp204x reference design support

2013-10-15 Thread Valentin Longchamp
Hi York, On 10/15/2013 08:24 PM, York Sun wrote: > Oops. I mistakenlly commented on an older version. Yes I have noticed, no problem ;o) > > On 09/11/2013 04:17 AM, Valentin Longchamp wrote: > >> >> diff --git a/MAINTAINERS b/MAINTAINERS >> index bd0f3a0..daa8494 100644 >> --- a/MAINTAINERS >>

Re: [U-Boot] [PATCH v2 1/2] serial: xuartlite: Staticize local functions

2013-10-15 Thread Michal Simek
On 10/16/2013 08:18 AM, Stefan Roese wrote: > On 16.10.2013 03:45, Axel Lin wrote: >> Staticize local functions in xuartlite driver. >> >> Signed-off-by: Axel Lin > > Acked-by: Stefan Roese Tested-by: Michal Simek Thanks, Michal -- Michal Simek, Ing. (M.Eng), OpenPGP -> KeyID: FE3D1F91 w: w

<    1   2