Re: [U-Boot] [PATCH] configs: Remove CONFIG_NET_MULTI from board files

2012-01-15 Thread Stefano Babic
On 15/01/2012 02:12, Mike Frysinger wrote:
 On Saturday 14 January 2012 05:08:46 Stefano Babic wrote:
 On 11/01/2012 13:47, Fabio Estevam wrote:
 CONFIG_NET_MULTI is not used anymore, so remove it from board
 files.
 
 include/configs/P1010RDB.h |5 - 
 include/configs/PM826.h|2 -- 
 include/configs/PM828.h|2 -- 
 include/configs/cam_enc_4xx.h  |1 - 
 include/configs/coreboot.h |6 -- 
 include/configs/da850_am18xxevm.h  |1 - 
 include/configs/ecovec.h   |1 - 
 include/configs/efikamx.h  |1 - 
 include/configs/enbw_cmc.h |1 - 
 include/configs/ethernut5.h|1 - 
 include/configs/flea3.h|1 - 
 include/configs/m28evk.h   |1 - 
 include/configs/omap3_evm_common.h |1 - 
 include/configs/omap3_mvblx.h  |1 - 
 include/configs/p1_p2_rdb_pc.h |7 --- 
 include/configs/tam3517-common.h   |1 - 16 files changed, 0
 insertions(+), 33 deletions(-)
 
 Applied to u-boot-imx after rebasing on u-boot-arm/master 
 (include/configs/da850_am18xxevm.h was dropped in a recent
 patch), thanks.
 
 might want to drop it considering it's buggy

Right, I have not seen your comment, thanks. Dropped from u-boot-imx.

Fabio, changes for P1010RDB are buggy - can you post a new version
fixing it ?

Thanks,
Stefano Babic

-- 
=
DENX Software Engineering GmbH, MD: Wolfgang Denk  Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-0 Fax: +49-8142-66989-80  Email: off...@denx.de
=
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH] configs: Remove CONFIG_NET_MULTI from board files

2012-01-14 Thread Stefano Babic
On 11/01/2012 13:47, Fabio Estevam wrote:
 CONFIG_NET_MULTI is not used anymore, so remove it from board files.
 
 Cc: Marek Vasut marek.va...@gmail.com
 Cc: Stefano Babic sba...@denx.de
 Cc: Kumar Gala kumar.g...@freescale.com
 Cc: Sandeep Paulraj s-paul...@ti.com
 Signed-off-by: Fabio Estevam fabio.este...@freescale.com
 ---
  include/configs/P1010RDB.h |5 -
  include/configs/PM826.h|2 --
  include/configs/PM828.h|2 --
  include/configs/cam_enc_4xx.h  |1 -
  include/configs/coreboot.h |6 --
  include/configs/da850_am18xxevm.h  |1 -
  include/configs/ecovec.h   |1 -
  include/configs/efikamx.h  |1 -
  include/configs/enbw_cmc.h |1 -
  include/configs/ethernut5.h|1 -
  include/configs/flea3.h|1 -
  include/configs/m28evk.h   |1 -
  include/configs/omap3_evm_common.h |1 -
  include/configs/omap3_mvblx.h  |1 -
  include/configs/p1_p2_rdb_pc.h |7 ---
  include/configs/tam3517-common.h   |1 -
  16 files changed, 0 insertions(+), 33 deletions(-)

Applied to u-boot-imx after rebasing on u-boot-arm/master
(include/configs/da850_am18xxevm.h was dropped in a recent patch), thanks.

Best regards,
Stefano Babic

-- 
=
DENX Software Engineering GmbH, MD: Wolfgang Denk  Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-0 Fax: +49-8142-66989-80  Email: off...@denx.de
=
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH] configs: Remove CONFIG_NET_MULTI from board files

2012-01-14 Thread Mike Frysinger
On Wednesday 11 January 2012 07:47:31 Fabio Estevam wrote:
 CONFIG_NET_MULTI is not used anymore, so remove it from board files.

NAK: idea: good.  actual patch: buggy :(.

 --- a/include/configs/P1010RDB.h
 +++ b/include/configs/P1010RDB.h
 
 -#if defined(CONFIG_TSEC_ENET)
 -#ifndef CONFIG_NET_MULTI
 -#define CONFIG_NET_MULTI
 -#endif
 -
  #define CONFIG_MII   /* MII PHY management */
  #define CONFIG_MII_DEFAULT_TSEC  1   /* Allow unregistered phys */
  #define CONFIG_TSEC1 1

you sure this is correct ?  looks like you deleted 2 if statements but only 1 
endif.

 --- a/include/configs/p1_p2_rdb_pc.h
 +++ b/include/configs/p1_p2_rdb_pc.h

  #define CONFIG_DOS_PARTITION
  #endif /* CONFIG_PCI */
 
 -#if defined(CONFIG_TSEC_ENET)
 -
 -#ifndef CONFIG_NET_MULTI
 -#define CONFIG_NET_MULTI
 -#endif
 -
  #define CONFIG_MII   /* MII PHY management */
  #define CONFIG_TSEC1
  #define CONFIG_TSEC1_NAMEeTSEC1

same issue here
-mike


signature.asc
Description: This is a digitally signed message part.
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH] configs: Remove CONFIG_NET_MULTI from board files

2012-01-14 Thread Mike Frysinger
On Saturday 14 January 2012 05:08:46 Stefano Babic wrote:
 On 11/01/2012 13:47, Fabio Estevam wrote:
  CONFIG_NET_MULTI is not used anymore, so remove it from board files.
  
   include/configs/P1010RDB.h |5 -
   include/configs/PM826.h|2 --
   include/configs/PM828.h|2 --
   include/configs/cam_enc_4xx.h  |1 -
   include/configs/coreboot.h |6 --
   include/configs/da850_am18xxevm.h  |1 -
   include/configs/ecovec.h   |1 -
   include/configs/efikamx.h  |1 -
   include/configs/enbw_cmc.h |1 -
   include/configs/ethernut5.h|1 -
   include/configs/flea3.h|1 -
   include/configs/m28evk.h   |1 -
   include/configs/omap3_evm_common.h |1 -
   include/configs/omap3_mvblx.h  |1 -
   include/configs/p1_p2_rdb_pc.h |7 ---
   include/configs/tam3517-common.h   |1 -
   16 files changed, 0 insertions(+), 33 deletions(-)
 
 Applied to u-boot-imx after rebasing on u-boot-arm/master
 (include/configs/da850_am18xxevm.h was dropped in a recent patch), thanks.

might want to drop it considering it's buggy
-mike


signature.asc
Description: This is a digitally signed message part.
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH] configs: Remove CONFIG_NET_MULTI from board files

2012-01-11 Thread Marek Vasut
 CONFIG_NET_MULTI is not used anymore, so remove it from board files.
 
 Cc: Marek Vasut marek.va...@gmail.com
 Cc: Stefano Babic sba...@denx.de
 Cc: Kumar Gala kumar.g...@freescale.com
 Cc: Sandeep Paulraj s-paul...@ti.com
 Signed-off-by: Fabio Estevam fabio.este...@freescale.com

Acked-by: Marek Vasut marek.va...@gmail.com

For efikamx:

Tested-by: Marek Vasut marek.va...@gmail.com

 ---
  include/configs/P1010RDB.h |5 -
  include/configs/PM826.h|2 --
  include/configs/PM828.h|2 --
  include/configs/cam_enc_4xx.h  |1 -
  include/configs/coreboot.h |6 --
  include/configs/da850_am18xxevm.h  |1 -
  include/configs/ecovec.h   |1 -
  include/configs/efikamx.h  |1 -
  include/configs/enbw_cmc.h |1 -
  include/configs/ethernut5.h|1 -
  include/configs/flea3.h|1 -
  include/configs/m28evk.h   |1 -
  include/configs/omap3_evm_common.h |1 -
  include/configs/omap3_mvblx.h  |1 -
  include/configs/p1_p2_rdb_pc.h |7 ---
  include/configs/tam3517-common.h   |1 -
  16 files changed, 0 insertions(+), 33 deletions(-)
 
 diff --git a/include/configs/P1010RDB.h b/include/configs/P1010RDB.h
 index af4609f..a9251b4 100644
 --- a/include/configs/P1010RDB.h
 +++ b/include/configs/P1010RDB.h
 @@ -518,11 +518,6 @@ extern unsigned long get_sdram_size(void);
  #define CONFIG_SF_DEFAULT_MODE   SPI_MODE_0
  #endif
 
 -#if defined(CONFIG_TSEC_ENET)
 -#ifndef CONFIG_NET_MULTI
 -#define CONFIG_NET_MULTI
 -#endif
 -
  #define CONFIG_MII   /* MII PHY management */
  #define CONFIG_MII_DEFAULT_TSEC  1   /* Allow unregistered phys */
  #define CONFIG_TSEC1 1
 diff --git a/include/configs/PM826.h b/include/configs/PM826.h
 index f4f9305..cde0fd6 100644
 --- a/include/configs/PM826.h
 +++ b/include/configs/PM826.h
 @@ -100,11 +100,9 @@
   *
   * if CONFIG_ETHER_ON_SCC is selected, then
   *   - CONFIG_ETHER_INDEX must be set to the channel number (1-4)
 - *   - CONFIG_NET_MULTI must not be defined
   *
   * if CONFIG_ETHER_ON_FCC is selected, then
   *   - one or more CONFIG_ETHER_ON_FCCx (x=1,2,3) must also be selected
 - *   - CONFIG_NET_MULTI must be defined
   *
   * if CONFIG_ETHER_NONE is defined, then either the ethernet routines must
 be * defined elsewhere (as for the console), or CONFIG_CMD_NET must be
 unset. diff --git a/include/configs/PM828.h b/include/configs/PM828.h
 index 28666d6..74ced5a 100644
 --- a/include/configs/PM828.h
 +++ b/include/configs/PM828.h
 @@ -100,11 +100,9 @@
   *
   * if CONFIG_ETHER_ON_SCC is selected, then
   *   - CONFIG_ETHER_INDEX must be set to the channel number (1-4)
 - *   - CONFIG_NET_MULTI must not be defined
   *
   * if CONFIG_ETHER_ON_FCC is selected, then
   *   - one or more CONFIG_ETHER_ON_FCCx (x=1,2,3) must also be selected
 - *   - CONFIG_NET_MULTI must be defined
   *
   * if CONFIG_ETHER_NONE is defined, then either the ethernet routines must
 be * defined elsewhere (as for the console), or CONFIG_CMD_NET must be
 unset. diff --git a/include/configs/cam_enc_4xx.h
 b/include/configs/cam_enc_4xx.h index a21d448..50a967c 100644
 --- a/include/configs/cam_enc_4xx.h
 +++ b/include/configs/cam_enc_4xx.h
 @@ -68,7 +68,6 @@
  #define CONFIG_BOOTP_DNS2
  #define CONFIG_BOOTP_SEND_HOSTNAME
  #define CONFIG_NET_RETRY_COUNT   10
 -#define CONFIG_NET_MULTI
  #define CONFIG_CMD_MII
  #define CONFIG_SYS_DCACHE_OFF
  #define CONFIG_RESET_PHY_R
 diff --git a/include/configs/coreboot.h b/include/configs/coreboot.h
 index 348a25b..2c65d74 100644
 --- a/include/configs/coreboot.h
 +++ b/include/configs/coreboot.h
 @@ -216,10 +216,4 @@
   */
  #define CONFIG_PCI
 
 -/*---
 - * Network device support
 - */
 -#define CONFIG_NET_MULTI
 -
 -
  #endif   /* __CONFIG_H */
 diff --git a/include/configs/da850_am18xxevm.h
 b/include/configs/da850_am18xxevm.h index 9b7bf1e..6fb3920 100644
 --- a/include/configs/da850_am18xxevm.h
 +++ b/include/configs/da850_am18xxevm.h
 @@ -125,7 +125,6 @@
  #define CONFIG_BOOTP_DNS2
  #define CONFIG_BOOTP_SEND_HOSTNAME
  #define CONFIG_NET_RETRY_COUNT   10
 -#define CONFIG_NET_MULTI
  #endif
 
  #ifdef CONFIG_USE_NOR
 diff --git a/include/configs/ecovec.h b/include/configs/ecovec.h
 index 2e2a9a7..4549a4c 100644
 --- a/include/configs/ecovec.h
 +++ b/include/configs/ecovec.h
 @@ -88,7 +88,6 @@
  #define CONFIG_SH_I2C_BASE1  0xA475
 
  /* Ether */
 -#define CONFIG_NET_MULTI 1
  #define CONFIG_SH_ETHER 1
  #define CONFIG_SH_ETHER_USE_PORT (0)
  #define CONFIG_SH_ETHER_PHY_ADDR (0x1f)
 diff --git a/include/configs/efikamx.h b/include/configs/efikamx.h
 index 522487b..e2f0f74 100644
 --- a/include/configs/efikamx.h
 +++ b/include/configs/efikamx.h
 @@ -206,7 +206,6 @@
  /* USB NET */
  #ifdef   CONFIG_CMD_NET
  #define  CONFIG_USB_ETHER_ASIX
 -#define  CONFIG_NET_MULTI

Re: [U-Boot] [PATCH] configs: Remove CONFIG_NET_MULTI from board files

2012-01-11 Thread Heiko Schocher
Hello Fabio,

Fabio Estevam wrote:
 CONFIG_NET_MULTI is not used anymore, so remove it from board files.
 
 Cc: Marek Vasut marek.va...@gmail.com
 Cc: Stefano Babic sba...@denx.de
 Cc: Kumar Gala kumar.g...@freescale.com
 Cc: Sandeep Paulraj s-paul...@ti.com
 Signed-off-by: Fabio Estevam fabio.este...@freescale.com
 ---
  include/configs/P1010RDB.h |5 -
  include/configs/PM826.h|2 --
  include/configs/PM828.h|2 --
  include/configs/cam_enc_4xx.h  |1 -
  include/configs/coreboot.h |6 --
  include/configs/da850_am18xxevm.h  |1 -
  include/configs/ecovec.h   |1 -
  include/configs/efikamx.h  |1 -
  include/configs/enbw_cmc.h |1 -
  include/configs/ethernut5.h|1 -
  include/configs/flea3.h|1 -
  include/configs/m28evk.h   |1 -
  include/configs/omap3_evm_common.h |1 -
  include/configs/omap3_mvblx.h  |1 -
  include/configs/p1_p2_rdb_pc.h |7 ---
  include/configs/tam3517-common.h   |1 -
  16 files changed, 0 insertions(+), 33 deletions(-)

Acked-by: Heiko Schocher h...@denx.de

Tested on the enbw_cmc and cam_enc_4xx board, so:

Tested-by: Heiko Schocher h...@denx.de

Thanks!

bye,
Heiko
-- 
DENX Software Engineering GmbH, MD: Wolfgang Denk  Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH] configs: Remove CONFIG_NET_MULTI from board files

2012-01-11 Thread Stefano Babic
On 11/01/2012 13:47, Fabio Estevam wrote:
 CONFIG_NET_MULTI is not used anymore, so remove it from board files.
 
 Cc: Marek Vasut marek.va...@gmail.com
 Cc: Stefano Babic sba...@denx.de
 Cc: Kumar Gala kumar.g...@freescale.com
 Cc: Sandeep Paulraj s-paul...@ti.com
 Signed-off-by: Fabio Estevam fabio.este...@freescale.com
 ---
  include/configs/P1010RDB.h |5 -
  include/configs/PM826.h|2 --
  include/configs/PM828.h|2 --
  include/configs/cam_enc_4xx.h  |1 -
  include/configs/coreboot.h |6 --
  include/configs/da850_am18xxevm.h  |1 -
  include/configs/ecovec.h   |1 -
  include/configs/efikamx.h  |1 -
  include/configs/enbw_cmc.h |1 -
  include/configs/ethernut5.h|1 -
  include/configs/flea3.h|1 -
  include/configs/m28evk.h   |1 -
  include/configs/omap3_evm_common.h |1 -
  include/configs/omap3_mvblx.h  |1 -
  include/configs/p1_p2_rdb_pc.h |7 ---
  include/configs/tam3517-common.h   |1 -
  16 files changed, 0 insertions(+), 33 deletions(-)
 

Acked-by: Stefano Babic sba...@denx.de

Best regards,
Stefano Babic


-- 
=
DENX Software Engineering GmbH, MD: Wolfgang Denk  Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-0 Fax: +49-8142-66989-80  Email: off...@denx.de
=
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH] configs: Remove CONFIG_NET_MULTI from board files

2012-01-11 Thread Kumar Gala

On Jan 11, 2012, at 6:47 AM, Fabio Estevam wrote:

 CONFIG_NET_MULTI is not used anymore, so remove it from board files.
 
 Cc: Marek Vasut marek.va...@gmail.com
 Cc: Stefano Babic sba...@denx.de
 Cc: Kumar Gala kumar.g...@freescale.com
 Cc: Sandeep Paulraj s-paul...@ti.com
 Signed-off-by: Fabio Estevam fabio.este...@freescale.com
 ---
 include/configs/P1010RDB.h |5 -
 include/configs/PM826.h|2 --
 include/configs/PM828.h|2 --
 include/configs/cam_enc_4xx.h  |1 -
 include/configs/coreboot.h |6 --
 include/configs/da850_am18xxevm.h  |1 -
 include/configs/ecovec.h   |1 -
 include/configs/efikamx.h  |1 -
 include/configs/enbw_cmc.h |1 -
 include/configs/ethernut5.h|1 -
 include/configs/flea3.h|1 -
 include/configs/m28evk.h   |1 -
 include/configs/omap3_evm_common.h |1 -
 include/configs/omap3_mvblx.h  |1 -
 include/configs/p1_p2_rdb_pc.h |7 ---
 include/configs/tam3517-common.h   |1 -
 16 files changed, 0 insertions(+), 33 deletions(-)

Acked-by: Kumar Gala ga...@kernel.crashing.org

For P1010RDB  p1_p2_rdb_pc.h

- k

___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH] configs: Remove CONFIG_NET_MULTI from board files

2012-01-11 Thread Tom Rini
On Wed, Jan 11, 2012 at 5:47 AM, Fabio Estevam feste...@gmail.com wrote:
 CONFIG_NET_MULTI is not used anymore, so remove it from board files.

 Cc: Marek Vasut marek.va...@gmail.com
 Cc: Stefano Babic sba...@denx.de
 Cc: Kumar Gala kumar.g...@freescale.com
 Cc: Sandeep Paulraj s-paul...@ti.com
 Signed-off-by: Fabio Estevam fabio.este...@freescale.com
 ---
  include/configs/P1010RDB.h         |    5 -
  include/configs/PM826.h            |    2 --
  include/configs/PM828.h            |    2 --
  include/configs/cam_enc_4xx.h      |    1 -
  include/configs/coreboot.h         |    6 --
  include/configs/da850_am18xxevm.h  |    1 -
  include/configs/ecovec.h           |    1 -
  include/configs/efikamx.h          |    1 -
  include/configs/enbw_cmc.h         |    1 -
  include/configs/ethernut5.h        |    1 -
  include/configs/flea3.h            |    1 -
  include/configs/m28evk.h           |    1 -
  include/configs/omap3_evm_common.h |    1 -
  include/configs/omap3_mvblx.h      |    1 -
  include/configs/p1_p2_rdb_pc.h     |    7 ---
  include/configs/tam3517-common.h   |    1 -
  16 files changed, 0 insertions(+), 33 deletions(-)

Acked-by: Tom Rini tr...@ti.com

For the TI parts.

-- 
Tom
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot