[U-Boot] [PATCH] The _config target is not present anymore, mention _defconfig instead

2014-08-04 Thread Holger Hans Peter Freyther
The _config part is gone for sure, the _defconfig target could at least work. I have not verified this for all targets though. --- README | 22 +++--- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/README b/README index f704eb3..5dce2c2 100644 --- a/README +++

[U-Boot] [PATCH 1/3] gpio: Build the da8xx_gpio code for the davinci644x device

2013-02-08 Thread Holger Hans Peter Freyther
The differences include the number of GPIOs and that one is not required to set the pinmux on request. Signed-off-by: Holger Hans Peter Freyther hol...@freyther.de --- arch/arm/include/asm/arch-davinci/gpio.h |8 +++- drivers/gpio/Makefile|1 + drivers/gpio

[U-Boot] [PATCH 2/3] led: The gpio_led.c code expects that LED state is from the enum

2013-02-08 Thread Holger Hans Peter Freyther
u-boot is not consistent if state should be 0|1 or of the enum, the GPIO driver expects this to be one of the enum values. Update the caller. Signed-off-by: Holger Hans Peter Freyther hol...@freyther.de --- common/cmd_led.c |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git

[U-Boot] [PATCH 3/3] mac: Fix the condition check for setting the MAC from the EEPROM

2013-02-08 Thread Holger Hans Peter Freyther
in environment. Signed-off-by: Holger Hans Peter Freyther hol...@freyther.de --- arch/arm/cpu/arm926ejs/davinci/misc.c |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm/cpu/arm926ejs/davinci/misc.c b/arch/arm/cpu/arm926ejs/davinci/misc.c index c310c69..162c1e0 100644

[U-Boot] [PATCH 2/3] led: The gpio_led.c code expects that LED state is from the enum

2013-01-18 Thread Holger Hans Peter Freyther
u-boot is not consistent if state should be 0|1 or of the enum, the GPIO driver expects this to be one of the enum values. Update the caller. --- common/cmd_led.c |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/cmd_led.c b/common/cmd_led.c index 7f5ab43..c725f95

[U-Boot] [PATCH 3/3] mac: Fix the condition check for setting the MAC from the EEPROM

2013-01-18 Thread Holger Hans Peter Freyther
The issue got introduced in a cleanup by Manjunath Hadli in commit 826e99136e2bce61f3f6572e32d7aa724c116e6d. The eth_getenv_enetaddr_by_index method will validate the MAC addr and if none is set in the environment 0 will be returned. Set the MAC from the eeprom if no valid address is found in

[U-Boot] [PATCH 1/3] gpio: Build the da8xx_gpio code for the davinci644x device

2013-01-18 Thread Holger Hans Peter Freyther
The differences include the number of GPIOs and that one is not required to set the pinmux on request. --- arch/arm/include/asm/arch-davinci/gpio.h |8 +++- drivers/gpio/Makefile|1 + drivers/gpio/da8xx_gpio.c|4 3 files changed, 12