[PATCH] net: usb: asix: fix formating

2014-04-10 Thread Antony Pavlov
Signed-off-by: Antony Pavlov --- drivers/net/usb/asix.c | 17 - 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/drivers/net/usb/asix.c b/drivers/net/usb/asix.c index 37057a7..2145d3f 100644 --- a/drivers/net/usb/asix.c +++ b/drivers/net/usb/asix.c @@ -286,7 +286,7 @@

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

2014-04-10 Thread Michael D. Burkey
The first time I sent this I apparently typed a character into the wrong window before I sent it and didn't notice it. - --- a/common/env.c +++ b/common/env.c @@ -258,7 +258,7 @@ void export_env_ull(const char *name, unsign

[PATCH 2/3] memtest: cleanup requests of regions

2014-04-10 Thread Alexander Aring
This patch removes the first and last entry check inside the loop. There should be no functional changes there. Signed-off-by: Alexander Aring --- commands/memtest.c | 66 +++--- 1 file changed, 28 insertions(+), 38 deletions(-) diff --git a/comma

Re: Re: [PATCH] imx6: ocotp: Add On-Chip OTP registers write support

2014-04-10 Thread Uladzimir Bely
Hello, Sasha. It seems I've fixed all according your remarks instead of one question. 10.04.2014 09:16, Sascha Hauer пишет: > > As suggested in my last mail: > > Do we need this tool at all? We can add a .macaddr parameter to the > ocotp device using dev_add_param_mac() (This function is new an

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

2014-04-10 Thread Michael D. Burkey
(As this is the first patch I'm posting directly to the list rather than through Sascha, feel free to yell at me if my format is wrong.) This fixes a fairly major, trivial bug in the export_env_ull function -- it is currently converting values to signed when it exports them. As the import function

Re: RFC: barebox-x86 as a coreboot payload

2014-04-10 Thread Michel Stam
Hello Sascha, I think there is interest in EFI support. It's a good thing to implement a standard boot concept. It could be used on ARM aswell. The really bad thing about EFI is that it requires runtime services to access the EFI variables from the kernel. For this the kernel calls back into boot

[PATCH 3/3] memtest: copyright to UPPER case and fix typo

2014-04-10 Thread Alexander Aring
Signed-off-by: Alexander Aring --- common/memtest.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/memtest.c b/common/memtest.c index 5303c92..541d008 100644 --- a/common/memtest.c +++ b/common/memtest.c @@ -1,7 +1,7 @@ /* - * memory_test.c + * memtest.c * - * C

[PATCH 0/3] memtest: small cleanup

2014-04-10 Thread Alexander Aring
Hi, this are three patches to cleanup the memtest command. It removes the the first and last if condition in the sdram regions loop. It was stupid to handle it in that way but since then my skills are improved and it was long time on my list. I would be happy if somebody can test it with two bank

[PATCH 1/3] memtest: cleanup error handling

2014-04-10 Thread Alexander Aring
Signed-off-by: Alexander Aring --- commands/memtest.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/commands/memtest.c b/commands/memtest.c index a71576e..dc05e9e 100644 --- a/commands/memtest.c +++ b/commands/memtest.c @@ -232,12 +232,12 @@ out: if (

[PATCH 1/2] spi: i.MX: Simplify cspi_0_0_init()

2014-04-10 Thread Alexander Shiyan
Use SPI module software reset to simplify cspi_0_0_init(). Signed-off-by: Alexander Shiyan --- drivers/spi/imx_spi.c | 12 +--- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/drivers/spi/imx_spi.c b/drivers/spi/imx_spi.c index 45461bd..3c1ba61 100644 --- a/drivers/spi/imx_

[PATCH 2/2] spi: i.MX: Optimise driver private structure

2014-04-10 Thread Alexander Shiyan
No need to store init() function in the driver private structure since it called only once during startup. Signed-off-by: Alexander Shiyan --- drivers/spi/imx_spi.c | 10 ++ 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/drivers/spi/imx_spi.c b/drivers/spi/imx_spi.c index