Re: [U-Boot] [PATCH] Remove last reference to CONFIG_MPC85xx_FEC

2008-10-30 Thread Andy Fleming
On Thu, Oct 30, 2008 at 12:53 AM, Ben Warren [EMAIL PROTECTED] wrote:
 This is no longer used by any boards, the last one was removed in
 commit 6de5bf24004c8d9c9b070bb8f7418d1c45e5eb27.

 Signed-off-by: Ben Warren [EMAIL PROTECTED]

Um8540ADS uses it.  And the 8572 has one, even though we don't
have any boards which expose it at this time.  Unless I've missed
something.  If you look at drivers/net/tsec.c, you'll see it's used in
the standard tsec init array.

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


Re: [U-Boot] [PATCH] Remove last reference to CONFIG_MPC85xx_FEC

2008-10-30 Thread Ben Warren
Andy Fleming wrote:
 On Thu, Oct 30, 2008 at 12:53 AM, Ben Warren [EMAIL PROTECTED] wrote:
   
 This is no longer used by any boards, the last one was removed in
 commit 6de5bf24004c8d9c9b070bb8f7418d1c45e5eb27.

 Signed-off-by: Ben Warren [EMAIL PROTECTED]
 

 Um8540ADS uses it.  And the 8572 has one, even though we don't
 have any boards which expose it at this time.  Unless I've missed
 something.  If you look at drivers/net/tsec.c, you'll see it's used in
 the standard tsec init array.

 Andy
   
I see... check this out:

[EMAIL PROTECTED]:~/src/u-boot$ grep -R MPC85xx_FEC *
cpu/mpc85xx/cpu.c:#if defined(CONFIG_TSEC_ENET) || defined(CONFIG_MPC85xx_FEC)

[EMAIL PROTECTED]:~/src/u-boot$ grep -R MPC85XX_FEC *
drivers/net/tsec.c:#ifdef CONFIG_MPC85XX_FEC
drivers/net/tsec.c: .devname = CONFIG_MPC85XX_FEC_NAME,
include/configs/MPC8540EVAL.h:#define CONFIG_MPC85XX_FEC  1
include/configs/MPC8540EVAL.h:#define CONFIG_MPC85XX_FEC_NAMEFE
C
include/configs/sbc8548.h:#undef CONFIG_MPC85XX_FEC
include/configs/ATUM8548.h:#undef CONFIG_MPC85XX_FEC
include/configs/PM854.h:#define CONFIG_MPC85XX_FEC  1
include/configs/PM854.h:#define CONFIG_MPC85XX_FEC_NAME FEC
include/configs/MPC8540ADS.h:#define CONFIG_MPC85XX_FEC 1
include/configs/MPC8540ADS.h:#define CONFIG_MPC85XX_FEC_NAMEFEC
include/configs/TQM85xx.h:#define CONFIG_MPC85XX_FEC1
include/configs/TQM85xx.h:#define CONFIG_MPC85XX_FEC_NAME   FEC
include/configs/MPC8548CDS.h:#undef CONFIG_MPC85XX_FEC
include/configs/socrates.h:#undef CONFIG_MPC85XX_FEC


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


[U-Boot] [PATCH] Remove last reference to CONFIG_MPC85xx_FEC

2008-10-29 Thread Ben Warren
This is no longer used by any boards, the last one was removed in
commit 6de5bf24004c8d9c9b070bb8f7418d1c45e5eb27.

Signed-off-by: Ben Warren [EMAIL PROTECTED]
---
 cpu/mpc85xx/cpu.c |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/cpu/mpc85xx/cpu.c b/cpu/mpc85xx/cpu.c
index b8f9125..0918fc6 100644
--- a/cpu/mpc85xx/cpu.c
+++ b/cpu/mpc85xx/cpu.c
@@ -379,7 +379,7 @@ void upmconfig (uint upm, uint * table, uint size)
  */
 int cpu_eth_init(bd_t *bis)
 {
-#if defined(CONFIG_TSEC_ENET) || defined(CONFIG_MPC85xx_FEC)
+#if defined(CONFIG_TSEC_ENET)
tsec_standard_init(bis);
 #endif
 
-- 
1.5.4.3

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