All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 1/4] powerpc/83xx: remove staticness for qe_iop_conf_tab
@ 2013-07-04 13:37 Holger Brunck
  2013-07-04 13:37 ` [U-Boot] [PATCH 2/4] km/common: switch on CMD_GREPENV Holger Brunck
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Holger Brunck @ 2013-07-04 13:37 UTC (permalink / raw)
  To: u-boot

commit a5510058 powerpc/83xx/km: make local functions and structs static

removed the staticness also from this struct. But this struct is needed
in arch/powerpc/cpu/mpc83xx/cpu_init.c and declared as extern.

Signed-off-by: Holger Brunck <holger.brunck@keymile.com>
---
 board/keymile/km83xx/km83xx.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/board/keymile/km83xx/km83xx.c b/board/keymile/km83xx/km83xx.c
index 812a436..47c40f5 100644
--- a/board/keymile/km83xx/km83xx.c
+++ b/board/keymile/km83xx/km83xx.c
@@ -31,7 +31,7 @@
 
 #include "../common/common.h"
 
-static const qe_iop_conf_t qe_iop_conf_tab[] = {
+const qe_iop_conf_t qe_iop_conf_tab[] = {
 	/* port pin dir open_drain assign */
 #if defined(CONFIG_MPC8360)
 	/* MDIO */
-- 
1.8.0.1

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [U-Boot] [PATCH 2/4] km/common: switch on CMD_GREPENV
  2013-07-04 13:37 [U-Boot] [PATCH 1/4] powerpc/83xx: remove staticness for qe_iop_conf_tab Holger Brunck
@ 2013-07-04 13:37 ` Holger Brunck
  2013-07-04 13:37 ` [U-Boot] [PATCH 3/4] powerpc/km: drop unused CONFIG_SYS_DTT_LOW_TEMP Holger Brunck
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Holger Brunck @ 2013-07-04 13:37 UTC (permalink / raw)
  To: u-boot

Signed-off-by: Holger Brunck <holger.brunck@keymile.com>
---
 include/configs/km/keymile-common.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/include/configs/km/keymile-common.h b/include/configs/km/keymile-common.h
index 3b15c4e..cef4860 100644
--- a/include/configs/km/keymile-common.h
+++ b/include/configs/km/keymile-common.h
@@ -34,6 +34,7 @@
 #define CONFIG_CMD_ASKENV
 #define CONFIG_CMD_DHCP
 #define CONFIG_CMD_DEFAULTENV_VARS
+#define CONFIG_CMD_GREPENV
 #define CONFIG_CMD_ECHO
 #define CONFIG_CMD_IMMAP
 #define CONFIG_CMD_MII
-- 
1.8.0.1

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [U-Boot] [PATCH 3/4] powerpc/km: drop unused CONFIG_SYS_DTT_LOW_TEMP
  2013-07-04 13:37 [U-Boot] [PATCH 1/4] powerpc/83xx: remove staticness for qe_iop_conf_tab Holger Brunck
  2013-07-04 13:37 ` [U-Boot] [PATCH 2/4] km/common: switch on CMD_GREPENV Holger Brunck
@ 2013-07-04 13:37 ` Holger Brunck
  2013-07-04 13:37 ` [U-Boot] [PATCH 4/4] km/scripts: fix ramfs Holger Brunck
  2013-09-18  6:44 ` [U-Boot] [PATCH 1/4] powerpc/83xx: remove staticness for qe_iop_conf_tab Holger Brunck
  3 siblings, 0 replies; 5+ messages in thread
From: Holger Brunck @ 2013-07-04 13:37 UTC (permalink / raw)
  To: u-boot

This define is not used in u-boot code, we can drop this define safely.

Signed-off-by: Holger Brunck <holger.brunck@keymile.com>
---
 include/configs/km/km83xx-common.h | 1 -
 include/configs/km82xx.h           | 1 -
 2 files changed, 2 deletions(-)

diff --git a/include/configs/km/km83xx-common.h b/include/configs/km/km83xx-common.h
index eb0e5b6..c6b4c73 100644
--- a/include/configs/km/km83xx-common.h
+++ b/include/configs/km/km83xx-common.h
@@ -214,7 +214,6 @@
 #define CONFIG_DTT_LM75		/* ON Semi's LM75 */
 #define CONFIG_DTT_SENSORS	{0, 1, 2, 3}	/* Sensor addresses */
 #define CONFIG_SYS_DTT_MAX_TEMP	70
-#define CONFIG_SYS_DTT_LOW_TEMP	-30
 #define CONFIG_SYS_DTT_HYSTERESIS	3
 #define CONFIG_SYS_DTT_BUS_NUM		(CONFIG_SYS_MAX_I2C_BUS)
 
diff --git a/include/configs/km82xx.h b/include/configs/km82xx.h
index 3c2117f..fa4cc7b 100644
--- a/include/configs/km82xx.h
+++ b/include/configs/km82xx.h
@@ -280,7 +280,6 @@ int get_scl(void);
 #define CONFIG_DTT_LM75			/* ON Semi's LM75		*/
 #define CONFIG_DTT_SENSORS	{0}	/* Sensor addresses		*/
 #define CONFIG_SYS_DTT_MAX_TEMP	70
-#define CONFIG_SYS_DTT_LOW_TEMP	-30
 #define CONFIG_SYS_DTT_HYSTERESIS	3
 #define CONFIG_SYS_DTT_BUS_NUM		(CONFIG_SYS_MAX_I2C_BUS)
 
-- 
1.8.0.1

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [U-Boot] [PATCH 4/4] km/scripts: fix ramfs
  2013-07-04 13:37 [U-Boot] [PATCH 1/4] powerpc/83xx: remove staticness for qe_iop_conf_tab Holger Brunck
  2013-07-04 13:37 ` [U-Boot] [PATCH 2/4] km/common: switch on CMD_GREPENV Holger Brunck
  2013-07-04 13:37 ` [U-Boot] [PATCH 3/4] powerpc/km: drop unused CONFIG_SYS_DTT_LOW_TEMP Holger Brunck
@ 2013-07-04 13:37 ` Holger Brunck
  2013-09-18  6:44 ` [U-Boot] [PATCH 1/4] powerpc/83xx: remove staticness for qe_iop_conf_tab Holger Brunck
  3 siblings, 0 replies; 5+ messages in thread
From: Holger Brunck @ 2013-07-04 13:37 UTC (permalink / raw)
  To: u-boot

From: Andreas Huber <andreas.huber@keymile.com>

'actual_bank' is not used anymore, instead boot_bank is used.

Signed-off-by: Andreas Huber <andreas.huber@keymile.com>
---
 board/keymile/scripts/ramfs-common.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/board/keymile/scripts/ramfs-common.txt b/board/keymile/scripts/ramfs-common.txt
index 8a8d287..502c863 100644
--- a/board/keymile/scripts/ramfs-common.txt
+++ b/board/keymile/scripts/ramfs-common.txt
@@ -1,5 +1,5 @@
 addramfs=setenv bootargs "${bootargs} phram.phram=rootfs${boot_bank},${rootfsaddr},${rootfssize}"
-actual_bank=-1
+boot_bank=-1
 altbootcmd=run ${subbootcmds}
 bootcmd=run ${subbootcmds}
 subbootcmds=tftpfdt tftpkernel setrootfsaddr tftpramfs flashargs add_default addpanic addramfs boot
-- 
1.8.0.1

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [U-Boot] [PATCH 1/4] powerpc/83xx: remove staticness for qe_iop_conf_tab
  2013-07-04 13:37 [U-Boot] [PATCH 1/4] powerpc/83xx: remove staticness for qe_iop_conf_tab Holger Brunck
                   ` (2 preceding siblings ...)
  2013-07-04 13:37 ` [U-Boot] [PATCH 4/4] km/scripts: fix ramfs Holger Brunck
@ 2013-09-18  6:44 ` Holger Brunck
  3 siblings, 0 replies; 5+ messages in thread
From: Holger Brunck @ 2013-09-18  6:44 UTC (permalink / raw)
  To: u-boot

Hi Kim,

On 07/04/2013 03:37 PM, Holger Brunck wrote:
> commit a5510058 powerpc/83xx/km: make local functions and structs static
> 
> removed the staticness also from this struct. But this struct is needed
> in arch/powerpc/cpu/mpc83xx/cpu_init.c and declared as extern.
> 
> Signed-off-by: Holger Brunck <holger.brunck@keymile.com>
> ---
>  board/keymile/km83xx/km83xx.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/board/keymile/km83xx/km83xx.c b/board/keymile/km83xx/km83xx.c
> index 812a436..47c40f5 100644
> --- a/board/keymile/km83xx/km83xx.c
> +++ b/board/keymile/km83xx/km83xx.c
> @@ -31,7 +31,7 @@
>  
>  #include "../common/common.h"
>  
> -static const qe_iop_conf_t qe_iop_conf_tab[] = {
> +const qe_iop_conf_t qe_iop_conf_tab[] = {
>  	/* port pin dir open_drain assign */
>  #if defined(CONFIG_MPC8360)
>  	/* MDIO */
> 

we are already at rc3 for v2013.10-rc3 could you please pull these 4 patches
into your tree to get them merge for mainline u-boot?

Thanks!
Holger

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2013-09-18  6:44 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-07-04 13:37 [U-Boot] [PATCH 1/4] powerpc/83xx: remove staticness for qe_iop_conf_tab Holger Brunck
2013-07-04 13:37 ` [U-Boot] [PATCH 2/4] km/common: switch on CMD_GREPENV Holger Brunck
2013-07-04 13:37 ` [U-Boot] [PATCH 3/4] powerpc/km: drop unused CONFIG_SYS_DTT_LOW_TEMP Holger Brunck
2013-07-04 13:37 ` [U-Boot] [PATCH 4/4] km/scripts: fix ramfs Holger Brunck
2013-09-18  6:44 ` [U-Boot] [PATCH 1/4] powerpc/83xx: remove staticness for qe_iop_conf_tab Holger Brunck

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.