[PATCH] mtd: nand-bb: use list_for_each_entry_safe

2014-04-29 Thread Sascha Hauer
We need list_for_each_entry_safe in dev_remove_bb_dev since the list entries are removed during iteration over the list. Signed-off-by: Sascha Hauer s.ha...@pengutronix.de Reported-by: Alexander Aring alex.ar...@gmail.com --- drivers/mtd/nand/nand-bb.c | 4 ++-- 1 file changed, 2 insertions(+),

Re: [PATCH 00/11] ARM: add initial support for Rockchip boards

2014-04-29 Thread Sascha Hauer
On Mon, Apr 28, 2014 at 10:54:53PM +0200, Beniamino Galvani wrote: On Mon, Apr 28, 2014 at 09:26:27AM +0200, Sascha Hauer wrote: Hi Beniamino, On Sun, Apr 27, 2014 at 11:30:33AM +0200, Beniamino Galvani wrote: This series adds an initial support for Rockchip SoCs and has been tested

Re: [PATCH] RiOTboard: add new board

2014-04-29 Thread Sascha Hauer
On Thu, Apr 24, 2014 at 10:17:07PM +0200, Lucas Stach wrote: From: Eric Bénard e...@eukrea.com this board is produced by Embest/Element 14 and is based on i.MX6 Solo The following features are tested : - UART2 (console) - eMMC - SDCard - uSDCard - Ethernet - USB Host (through 4 ports

Re: Freescale P1020 Startup

2014-04-29 Thread Renaud Barbier
Hello Tobias, I was away for a week, hence the late answer. Have you made any progress since you sent this email? As far as I know, this early in the code there is no difference. If you have more information on your debug step, I may be able to find something. What tool do you use? cheers,

Re: [PATCH] mtd: nand-bb: use list_for_each_entry_safe

2014-04-29 Thread Alexander Aring
Hi, thanks Sascha. On Tue, Apr 29, 2014 at 08:06:46AM +0200, Sascha Hauer wrote: We need list_for_each_entry_safe in dev_remove_bb_dev since the list entries are removed during iteration over the list. Signed-off-by: Sascha Hauer s.ha...@pengutronix.de Reported-by: Alexander Aring

[PATCH] mtd: nand-mxs: Return bitflips

2014-04-29 Thread Sascha Hauer
The read_page hook shall return the number of bitflips. Implement that. Signed-off-by: Sascha Hauer s.ha...@pengutronix.de --- drivers/mtd/nand/nand_mxs.c | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/drivers/mtd/nand/nand_mxs.c b/drivers/mtd/nand/nand_mxs.c index

[PATCH 1/1] Fix bug in export 64 bit unsigned environment variable.

2014-04-29 Thread Michael D. Burkey
This patch corrects exporting unsigned 64-bit environment variables. I had left out a signed off line before. Signed-off-by: Michael Burkey mdburkey at gmail.com --- --- a/common/env.c +++ b/common/env.c @@ -258,7 +258,7 @@ void export_env_ull(const char *name, unsigned long long val) { -

Re: [PATCH 00/11] ARM: add initial support for Rockchip boards

2014-04-29 Thread Beniamino Galvani
On Tue, Apr 29, 2014 at 09:05:58AM +0200, Sascha Hauer wrote: On Mon, Apr 28, 2014 at 10:54:53PM +0200, Beniamino Galvani wrote: On Mon, Apr 28, 2014 at 09:26:27AM +0200, Sascha Hauer wrote: Hi Beniamino, On Sun, Apr 27, 2014 at 11:30:33AM +0200, Beniamino Galvani wrote: This

[PATCH] ARM: Rockchip: use upstream dtsi files

2014-04-29 Thread Beniamino Galvani
Signed-off-by: Beniamino Galvani b.galv...@gmail.com --- arch/arm/dts/rk3188-clocks.dtsi | 289 --- arch/arm/dts/rk3188.dtsi| 248 + arch/arm/dts/rk3xxx.dtsi| 134 -- 3 files changed, 3

Re: [PATCH 00/11] ARM: add initial support for Rockchip boards

2014-04-29 Thread Heiko Stübner
Hi Beniamino, very cool that you're working on getting a better boot loader for us :-) Am Dienstag, 29. April 2014, 23:13:14 schrieb Beniamino Galvani: On Tue, Apr 29, 2014 at 09:05:58AM +0200, Sascha Hauer wrote: On Mon, Apr 28, 2014 at 10:54:53PM +0200, Beniamino Galvani wrote: On Mon,

[PATCH] ARM: boards: Makefile: fix whitespace

2014-04-29 Thread Lucas Stach
From: Lucas Stach l.st...@pengutronix.de Signed-off-by: Lucas Stach l.st...@pengutronix.de --- arch/arm/boards/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/boards/Makefile b/arch/arm/boards/Makefile index 16742d91389d..bdde1a4e2d60 100644 ---

[PATCH] make: dts: fix out-of-tree build

2014-04-29 Thread Silvio Fricke
If barebox is builded out-of-tree we don't find the dts-include This patch prevent us to get this: /[...]/barebox/drivers/input/keymap.c:4:37: fatal error: dt-bindings/input/input.h: No such file or directory Signed-off-by: Silvio Fricke silvio.fri...@gmail.com --- Makefile | 2 +- 1 file