* [U-Boot] [PATCH 0/5] !NET_MULTI cleanup part 2
@ 2011-10-16 20:04 Mike Frysinger
2011-10-16 20:04 ` [U-Boot] [PATCH 1/5] net: enc28j60_lpc2292: drop unused !NET_MULTI driver Mike Frysinger
` (4 more replies)
0 siblings, 5 replies; 13+ messages in thread
From: Mike Frysinger @ 2011-10-16 20:04 UTC (permalink / raw)
To: u-boot
Looks like my previous tree checking missed !NET_MULTI drivers that
didn't check in their code if NET_MULTI was not set. The build tests
further missed things because none of these drivers actually get used.
So clean up is fairly straight forward.
If, in the future, people need these drivers, it should be trivial for
them to resurrect things from git.
Mike Frysinger (5):
net: enc28j60_lpc2292: drop unused !NET_MULTI driver
net: ns9750: drop !NET_MULTI driver
net: s3c4510b_eth: drop unused !NET_MULTI driver
net: sc589: drop unused !NET_MULTI driver
net: xilinx_enet: drop unused !NET_MULTI driver
board/xilinx/xilinx_enet/emac_adapter.c | 165 ----
board/xilinx/xilinx_enet/xemac.c | 844 ------------------
board/xilinx/xilinx_enet/xemac.h | 673 ---------------
board/xilinx/xilinx_enet/xemac_g.c | 60 --
board/xilinx/xilinx_enet/xemac_i.h | 207 -----
board/xilinx/xilinx_enet/xemac_intr.c | 402 ---------
board/xilinx/xilinx_enet/xemac_intr_dma.c | 1344 -----------------------------
board/xilinx/xilinx_enet/xemac_l.h | 462 ----------
board/xilinx/xilinx_enet/xemac_options.c | 318 -------
board/xilinx/xilinx_enet/xemac_polled.c | 482 -----------
drivers/net/3c589.c | 517 -----------
drivers/net/3c589.h | 435 ----------
drivers/net/Makefile | 4 -
drivers/net/enc28j60_lpc2292.c | 983 ---------------------
drivers/net/ns9750_eth.c | 789 -----------------
drivers/net/s3c4510b_eth.c | 241 ------
drivers/net/s3c4510b_eth.h | 302 -------
include/configs/ns9750dev.h | 2 -
include/ns9750_eth.h | 298 -------
19 files changed, 0 insertions(+), 8528 deletions(-)
delete mode 100644 board/xilinx/xilinx_enet/emac_adapter.c
delete mode 100644 board/xilinx/xilinx_enet/xemac.c
delete mode 100644 board/xilinx/xilinx_enet/xemac.h
delete mode 100644 board/xilinx/xilinx_enet/xemac_g.c
delete mode 100644 board/xilinx/xilinx_enet/xemac_i.h
delete mode 100644 board/xilinx/xilinx_enet/xemac_intr.c
delete mode 100644 board/xilinx/xilinx_enet/xemac_intr_dma.c
delete mode 100644 board/xilinx/xilinx_enet/xemac_l.h
delete mode 100644 board/xilinx/xilinx_enet/xemac_options.c
delete mode 100644 board/xilinx/xilinx_enet/xemac_polled.c
delete mode 100644 drivers/net/3c589.c
delete mode 100644 drivers/net/3c589.h
delete mode 100644 drivers/net/enc28j60_lpc2292.c
delete mode 100644 drivers/net/ns9750_eth.c
delete mode 100644 drivers/net/s3c4510b_eth.c
delete mode 100644 drivers/net/s3c4510b_eth.h
delete mode 100644 include/ns9750_eth.h
--
1.7.6.1
^ permalink raw reply [flat|nested] 13+ messages in thread
* [U-Boot] [PATCH 1/5] net: enc28j60_lpc2292: drop unused !NET_MULTI driver
2011-10-16 20:04 [U-Boot] [PATCH 0/5] !NET_MULTI cleanup part 2 Mike Frysinger
@ 2011-10-16 20:04 ` Mike Frysinger
2011-10-23 21:01 ` Wolfgang Denk
2011-10-16 20:04 ` [U-Boot] [PATCH 2/5] net: ns9750: drop " Mike Frysinger
` (3 subsequent siblings)
4 siblings, 1 reply; 13+ messages in thread
From: Mike Frysinger @ 2011-10-16 20:04 UTC (permalink / raw)
To: u-boot
Everyone seems to have converted to the new enc28j60 driver, so drop
this older one which isn't used and doesn't support NET_MULTI.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
---
drivers/net/Makefile | 1 -
drivers/net/enc28j60_lpc2292.c | 983 ----------------------------------------
2 files changed, 0 insertions(+), 984 deletions(-)
delete mode 100644 drivers/net/enc28j60_lpc2292.c
diff --git a/drivers/net/Makefile b/drivers/net/Makefile
index 7aa96e6..a00c3ba 100644
--- a/drivers/net/Makefile
+++ b/drivers/net/Makefile
@@ -40,7 +40,6 @@ COBJS-$(CONFIG_DNET) += dnet.o
COBJS-$(CONFIG_E1000) += e1000.o
COBJS-$(CONFIG_EEPRO100) += eepro100.o
COBJS-$(CONFIG_ENC28J60) += enc28j60.o
-COBJS-$(CONFIG_ENC28J60_LPC2292) += enc28j60_lpc2292.o
COBJS-$(CONFIG_EP93XX) += ep93xx_eth.o
COBJS-$(CONFIG_ETHOC) += ethoc.o
COBJS-$(CONFIG_FEC_MXC) += fec_mxc.o
diff --git a/drivers/net/enc28j60_lpc2292.c b/drivers/net/enc28j60_lpc2292.c
deleted file mode 100644
index bf95052..0000000
--
1.7.6.1
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [U-Boot] [PATCH 2/5] net: ns9750: drop !NET_MULTI driver
2011-10-16 20:04 [U-Boot] [PATCH 0/5] !NET_MULTI cleanup part 2 Mike Frysinger
2011-10-16 20:04 ` [U-Boot] [PATCH 1/5] net: enc28j60_lpc2292: drop unused !NET_MULTI driver Mike Frysinger
@ 2011-10-16 20:04 ` Mike Frysinger
2011-10-23 21:03 ` Wolfgang Denk
2011-10-16 20:04 ` [U-Boot] [PATCH 3/5] net: s3c4510b_eth: drop unused " Mike Frysinger
` (2 subsequent siblings)
4 siblings, 1 reply; 13+ messages in thread
From: Mike Frysinger @ 2011-10-16 20:04 UTC (permalink / raw)
To: u-boot
Only one board uses this driver (ns9750dev), but the board doesn't seem
to have an entry to actually build it in the Makefile/boards.cfg, so just
delete net support from its board config.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
---
drivers/net/Makefile | 1 -
drivers/net/ns9750_eth.c | 789 -------------------------------------------
include/configs/ns9750dev.h | 2 -
include/ns9750_eth.h | 298 ----------------
4 files changed, 0 insertions(+), 1090 deletions(-)
delete mode 100644 drivers/net/ns9750_eth.c
delete mode 100644 include/ns9750_eth.h
diff --git a/drivers/net/Makefile b/drivers/net/Makefile
index a00c3ba..c885920 100644
--- a/drivers/net/Makefile
+++ b/drivers/net/Makefile
@@ -61,7 +61,6 @@ COBJS-$(CONFIG_DRIVER_AX88796L) += ax88796.o ne2000_base.o
COBJS-$(CONFIG_DRIVER_NETARMETH) += netarm_eth.o
COBJS-$(CONFIG_NETCONSOLE) += netconsole.o
COBJS-$(CONFIG_NS8382X) += ns8382x.o
-COBJS-$(CONFIG_DRIVER_NS9750_ETHERNET) += ns9750_eth.o
COBJS-$(CONFIG_PCNET) += pcnet.o
COBJS-$(CONFIG_PLB2800_ETHER) += plb2800_eth.o
COBJS-$(CONFIG_RTL8139) += rtl8139.o
diff --git a/drivers/net/ns9750_eth.c b/drivers/net/ns9750_eth.c
deleted file mode 100644
index 9899563..0000000
diff --git a/include/configs/ns9750dev.h b/include/configs/ns9750dev.h
index 8ecd2a9..c495423 100644
--- a/include/configs/ns9750dev.h
+++ b/include/configs/ns9750dev.h
@@ -55,7 +55,6 @@
* Hardware drivers
*/
#define CONFIG_NS9750_UART 1 /* use on-chip UART */
-#define CONFIG_DRIVER_NS9750_ETHERNET 1 /* use on-chip ethernet */
/*
* select serial console configuration
@@ -86,7 +85,6 @@
#define CONFIG_CMD_LOADB
#define CONFIG_CMD_LOADS
#define CONFIG_CMD_MEMORY
-#define CONFIG_CMD_NET
#define CONFIG_CMD_PING
diff --git a/include/ns9750_eth.h b/include/ns9750_eth.h
deleted file mode 100644
index 80c721b..0000000
--
1.7.6.1
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [U-Boot] [PATCH 3/5] net: s3c4510b_eth: drop unused !NET_MULTI driver
2011-10-16 20:04 [U-Boot] [PATCH 0/5] !NET_MULTI cleanup part 2 Mike Frysinger
2011-10-16 20:04 ` [U-Boot] [PATCH 1/5] net: enc28j60_lpc2292: drop unused !NET_MULTI driver Mike Frysinger
2011-10-16 20:04 ` [U-Boot] [PATCH 2/5] net: ns9750: drop " Mike Frysinger
@ 2011-10-16 20:04 ` Mike Frysinger
2011-10-23 21:04 ` Wolfgang Denk
2011-10-16 20:04 ` [U-Boot] [PATCH 4/5] net: sc589: " Mike Frysinger
2011-10-16 20:04 ` [U-Boot] [PATCH 5/5] net: xilinx_enet: " Mike Frysinger
4 siblings, 1 reply; 13+ messages in thread
From: Mike Frysinger @ 2011-10-16 20:04 UTC (permalink / raw)
To: u-boot
No boards appear to use this driver, and it doesn't support NET_MULTI,
so punt the old driver.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
---
drivers/net/Makefile | 1 -
drivers/net/s3c4510b_eth.c | 241 -----------------------------------
drivers/net/s3c4510b_eth.h | 302 --------------------------------------------
3 files changed, 0 insertions(+), 544 deletions(-)
delete mode 100644 drivers/net/s3c4510b_eth.c
delete mode 100644 drivers/net/s3c4510b_eth.h
diff --git a/drivers/net/Makefile b/drivers/net/Makefile
index c885920..00ceda1 100644
--- a/drivers/net/Makefile
+++ b/drivers/net/Makefile
@@ -65,7 +65,6 @@ COBJS-$(CONFIG_PCNET) += pcnet.o
COBJS-$(CONFIG_PLB2800_ETHER) += plb2800_eth.o
COBJS-$(CONFIG_RTL8139) += rtl8139.o
COBJS-$(CONFIG_RTL8169) += rtl8169.o
-COBJS-$(CONFIG_DRIVER_S3C4510_ETH) += s3c4510b_eth.o
COBJS-$(CONFIG_SH_ETHER) += sh_eth.o
COBJS-$(CONFIG_SMC91111) += smc91111.o
COBJS-$(CONFIG_SMC911X) += smc911x.o
diff --git a/drivers/net/s3c4510b_eth.c b/drivers/net/s3c4510b_eth.c
deleted file mode 100644
index 818ed3d..0000000
diff --git a/drivers/net/s3c4510b_eth.h b/drivers/net/s3c4510b_eth.h
deleted file mode 100644
index 18a52a7..0000000
--
1.7.6.1
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [U-Boot] [PATCH 4/5] net: sc589: drop unused !NET_MULTI driver
2011-10-16 20:04 [U-Boot] [PATCH 0/5] !NET_MULTI cleanup part 2 Mike Frysinger
` (2 preceding siblings ...)
2011-10-16 20:04 ` [U-Boot] [PATCH 3/5] net: s3c4510b_eth: drop unused " Mike Frysinger
@ 2011-10-16 20:04 ` Mike Frysinger
2011-10-23 21:06 ` Wolfgang Denk
2011-10-16 20:04 ` [U-Boot] [PATCH 5/5] net: xilinx_enet: " Mike Frysinger
4 siblings, 1 reply; 13+ messages in thread
From: Mike Frysinger @ 2011-10-16 20:04 UTC (permalink / raw)
To: u-boot
No boards appear to use this driver, and it doesn't support NET_MULTI,
so punt the old driver.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
---
drivers/net/3c589.c | 517 --------------------------------------------------
drivers/net/3c589.h | 435 ------------------------------------------
drivers/net/Makefile | 1 -
3 files changed, 0 insertions(+), 953 deletions(-)
delete mode 100644 drivers/net/3c589.c
delete mode 100644 drivers/net/3c589.h
diff --git a/drivers/net/3c589.c b/drivers/net/3c589.c
deleted file mode 100644
index f2c7d32..0000000
diff --git a/drivers/net/3c589.h b/drivers/net/3c589.h
deleted file mode 100644
index 8f8cf5b..0000000
diff --git a/drivers/net/Makefile b/drivers/net/Makefile
index 00ceda1..fa304d0 100644
--- a/drivers/net/Makefile
+++ b/drivers/net/Makefile
@@ -25,7 +25,6 @@ include $(TOPDIR)/config.mk
LIB := $(obj)libnet.o
-COBJS-$(CONFIG_DRIVER_3C589) += 3c589.o
COBJS-$(CONFIG_PPC4xx_EMAC) += 4xx_enet.o
COBJS-$(CONFIG_ALTERA_TSE) += altera_tse.o
COBJS-$(CONFIG_ARMADA100_FEC) += armada100_fec.o
--
1.7.6.1
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [U-Boot] [PATCH 5/5] net: xilinx_enet: drop unused !NET_MULTI driver
2011-10-16 20:04 [U-Boot] [PATCH 0/5] !NET_MULTI cleanup part 2 Mike Frysinger
` (3 preceding siblings ...)
2011-10-16 20:04 ` [U-Boot] [PATCH 4/5] net: sc589: " Mike Frysinger
@ 2011-10-16 20:04 ` Mike Frysinger
2011-10-16 21:44 ` Simon Glass
2011-10-23 21:08 ` Wolfgang Denk
4 siblings, 2 replies; 13+ messages in thread
From: Mike Frysinger @ 2011-10-16 20:04 UTC (permalink / raw)
To: u-boot
This driver doesn't support the NET_MULTI framework, and I can't find
any boards/configs/files that reference this subdir, so punt it all.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
---
board/xilinx/xilinx_enet/emac_adapter.c | 165 ----
board/xilinx/xilinx_enet/xemac.c | 844 ------------------
board/xilinx/xilinx_enet/xemac.h | 673 ---------------
board/xilinx/xilinx_enet/xemac_g.c | 60 --
board/xilinx/xilinx_enet/xemac_i.h | 207 -----
board/xilinx/xilinx_enet/xemac_intr.c | 402 ---------
board/xilinx/xilinx_enet/xemac_intr_dma.c | 1344 -----------------------------
board/xilinx/xilinx_enet/xemac_l.h | 462 ----------
board/xilinx/xilinx_enet/xemac_options.c | 318 -------
board/xilinx/xilinx_enet/xemac_polled.c | 482 -----------
10 files changed, 0 insertions(+), 4957 deletions(-)
delete mode 100644 board/xilinx/xilinx_enet/emac_adapter.c
delete mode 100644 board/xilinx/xilinx_enet/xemac.c
delete mode 100644 board/xilinx/xilinx_enet/xemac.h
delete mode 100644 board/xilinx/xilinx_enet/xemac_g.c
delete mode 100644 board/xilinx/xilinx_enet/xemac_i.h
delete mode 100644 board/xilinx/xilinx_enet/xemac_intr.c
delete mode 100644 board/xilinx/xilinx_enet/xemac_intr_dma.c
delete mode 100644 board/xilinx/xilinx_enet/xemac_l.h
delete mode 100644 board/xilinx/xilinx_enet/xemac_options.c
delete mode 100644 board/xilinx/xilinx_enet/xemac_polled.c
diff --git a/board/xilinx/xilinx_enet/emac_adapter.c b/board/xilinx/xilinx_enet/emac_adapter.c
deleted file mode 100644
index 35bcc4d..0000000
diff --git a/board/xilinx/xilinx_enet/xemac.c b/board/xilinx/xilinx_enet/xemac.c
deleted file mode 100644
index 48b4ede..0000000
diff --git a/board/xilinx/xilinx_enet/xemac.h b/board/xilinx/xilinx_enet/xemac.h
deleted file mode 100644
index 584cb7a..0000000
diff --git a/board/xilinx/xilinx_enet/xemac_g.c b/board/xilinx/xilinx_enet/xemac_g.c
deleted file mode 100644
index d985157..0000000
diff --git a/board/xilinx/xilinx_enet/xemac_i.h b/board/xilinx/xilinx_enet/xemac_i.h
deleted file mode 100644
index 9c160f3..0000000
diff --git a/board/xilinx/xilinx_enet/xemac_intr.c b/board/xilinx/xilinx_enet/xemac_intr.c
deleted file mode 100644
index b9a2621..0000000
diff --git a/board/xilinx/xilinx_enet/xemac_intr_dma.c b/board/xilinx/xilinx_enet/xemac_intr_dma.c
deleted file mode 100644
index 567abb4..0000000
diff --git a/board/xilinx/xilinx_enet/xemac_l.h b/board/xilinx/xilinx_enet/xemac_l.h
deleted file mode 100644
index a463937..0000000
diff --git a/board/xilinx/xilinx_enet/xemac_options.c b/board/xilinx/xilinx_enet/xemac_options.c
deleted file mode 100644
index 1f225f8..0000000
diff --git a/board/xilinx/xilinx_enet/xemac_polled.c b/board/xilinx/xilinx_enet/xemac_polled.c
deleted file mode 100644
index 23768bc..0000000
--
1.7.6.1
^ permalink raw reply [flat|nested] 13+ messages in thread
* [U-Boot] [PATCH 5/5] net: xilinx_enet: drop unused !NET_MULTI driver
2011-10-16 20:04 ` [U-Boot] [PATCH 5/5] net: xilinx_enet: " Mike Frysinger
@ 2011-10-16 21:44 ` Simon Glass
2011-10-16 22:12 ` Mike Frysinger
2011-10-23 21:08 ` Wolfgang Denk
1 sibling, 1 reply; 13+ messages in thread
From: Simon Glass @ 2011-10-16 21:44 UTC (permalink / raw)
To: u-boot
Hi Mike,
On Sun, Oct 16, 2011 at 1:04 PM, Mike Frysinger <vapier@gentoo.org> wrote:
> This driver doesn't support the NET_MULTI framework, and I can't find
> any boards/configs/files that reference this subdir, so punt it all.
Would it be worth trying to cc the author?
Regards,
Simon
>
> Signed-off-by: Mike Frysinger <vapier@gentoo.org>
> ---
> ?board/xilinx/xilinx_enet/emac_adapter.c ? | ?165 ----
> ?board/xilinx/xilinx_enet/xemac.c ? ? ? ? ?| ?844 ------------------
> ?board/xilinx/xilinx_enet/xemac.h ? ? ? ? ?| ?673 ---------------
> ?board/xilinx/xilinx_enet/xemac_g.c ? ? ? ?| ? 60 --
> ?board/xilinx/xilinx_enet/xemac_i.h ? ? ? ?| ?207 -----
> ?board/xilinx/xilinx_enet/xemac_intr.c ? ? | ?402 ---------
> ?board/xilinx/xilinx_enet/xemac_intr_dma.c | 1344 -----------------------------
> ?board/xilinx/xilinx_enet/xemac_l.h ? ? ? ?| ?462 ----------
> ?board/xilinx/xilinx_enet/xemac_options.c ?| ?318 -------
> ?board/xilinx/xilinx_enet/xemac_polled.c ? | ?482 -----------
> ?10 files changed, 0 insertions(+), 4957 deletions(-)
> ?delete mode 100644 board/xilinx/xilinx_enet/emac_adapter.c
> ?delete mode 100644 board/xilinx/xilinx_enet/xemac.c
> ?delete mode 100644 board/xilinx/xilinx_enet/xemac.h
> ?delete mode 100644 board/xilinx/xilinx_enet/xemac_g.c
> ?delete mode 100644 board/xilinx/xilinx_enet/xemac_i.h
> ?delete mode 100644 board/xilinx/xilinx_enet/xemac_intr.c
> ?delete mode 100644 board/xilinx/xilinx_enet/xemac_intr_dma.c
> ?delete mode 100644 board/xilinx/xilinx_enet/xemac_l.h
> ?delete mode 100644 board/xilinx/xilinx_enet/xemac_options.c
> ?delete mode 100644 board/xilinx/xilinx_enet/xemac_polled.c
>
> diff --git a/board/xilinx/xilinx_enet/emac_adapter.c b/board/xilinx/xilinx_enet/emac_adapter.c
> deleted file mode 100644
> index 35bcc4d..0000000
> diff --git a/board/xilinx/xilinx_enet/xemac.c b/board/xilinx/xilinx_enet/xemac.c
> deleted file mode 100644
> index 48b4ede..0000000
> diff --git a/board/xilinx/xilinx_enet/xemac.h b/board/xilinx/xilinx_enet/xemac.h
> deleted file mode 100644
> index 584cb7a..0000000
> diff --git a/board/xilinx/xilinx_enet/xemac_g.c b/board/xilinx/xilinx_enet/xemac_g.c
> deleted file mode 100644
> index d985157..0000000
> diff --git a/board/xilinx/xilinx_enet/xemac_i.h b/board/xilinx/xilinx_enet/xemac_i.h
> deleted file mode 100644
> index 9c160f3..0000000
> diff --git a/board/xilinx/xilinx_enet/xemac_intr.c b/board/xilinx/xilinx_enet/xemac_intr.c
> deleted file mode 100644
> index b9a2621..0000000
> diff --git a/board/xilinx/xilinx_enet/xemac_intr_dma.c b/board/xilinx/xilinx_enet/xemac_intr_dma.c
> deleted file mode 100644
> index 567abb4..0000000
> diff --git a/board/xilinx/xilinx_enet/xemac_l.h b/board/xilinx/xilinx_enet/xemac_l.h
> deleted file mode 100644
> index a463937..0000000
> diff --git a/board/xilinx/xilinx_enet/xemac_options.c b/board/xilinx/xilinx_enet/xemac_options.c
> deleted file mode 100644
> index 1f225f8..0000000
> diff --git a/board/xilinx/xilinx_enet/xemac_polled.c b/board/xilinx/xilinx_enet/xemac_polled.c
> deleted file mode 100644
> index 23768bc..0000000
> --
> 1.7.6.1
>
> _______________________________________________
> U-Boot mailing list
> U-Boot at lists.denx.de
> http://lists.denx.de/mailman/listinfo/u-boot
>
^ permalink raw reply [flat|nested] 13+ messages in thread
* [U-Boot] [PATCH 5/5] net: xilinx_enet: drop unused !NET_MULTI driver
2011-10-16 21:44 ` Simon Glass
@ 2011-10-16 22:12 ` Mike Frysinger
0 siblings, 0 replies; 13+ messages in thread
From: Mike Frysinger @ 2011-10-16 22:12 UTC (permalink / raw)
To: u-boot
On Sunday 16 October 2011 17:44:46 Simon Glass wrote:
> On Sun, Oct 16, 2011 at 1:04 PM, Mike Frysinger wrote:
> > This driver doesn't support the NET_MULTI framework, and I can't find
> > any boards/configs/files that reference this subdir, so punt it all.
>
> Would it be worth trying to cc the author?
certainly, if the author was clear. the history of this tree dates back to
pre-git days, and everything since has largely been tree-wide tweaks rather
than driver-specific updates. i'll just shotgun some random people you might
have a passing interest.
-mike
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: This is a digitally signed message part.
Url : http://lists.denx.de/pipermail/u-boot/attachments/20111016/6d0a05e3/attachment.pgp
^ permalink raw reply [flat|nested] 13+ messages in thread
* [U-Boot] [PATCH 1/5] net: enc28j60_lpc2292: drop unused !NET_MULTI driver
2011-10-16 20:04 ` [U-Boot] [PATCH 1/5] net: enc28j60_lpc2292: drop unused !NET_MULTI driver Mike Frysinger
@ 2011-10-23 21:01 ` Wolfgang Denk
0 siblings, 0 replies; 13+ messages in thread
From: Wolfgang Denk @ 2011-10-23 21:01 UTC (permalink / raw)
To: u-boot
Dear Mike Frysinger,
In message <1318795453-18090-2-git-send-email-vapier@gentoo.org> you wrote:
> Everyone seems to have converted to the new enc28j60 driver, so drop
> this older one which isn't used and doesn't support NET_MULTI.
>
> Signed-off-by: Mike Frysinger <vapier@gentoo.org>
> ---
> drivers/net/Makefile | 1 -
> drivers/net/enc28j60_lpc2292.c | 983 ----------------------------------------
> 2 files changed, 0 insertions(+), 984 deletions(-)
> delete mode 100644 drivers/net/enc28j60_lpc2292.c
Applied, thanks.
Best regards,
Wolfgang Denk
--
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
As a general rule, the freedom of any people can be judged by the
volume of their laughter.
^ permalink raw reply [flat|nested] 13+ messages in thread
* [U-Boot] [PATCH 2/5] net: ns9750: drop !NET_MULTI driver
2011-10-16 20:04 ` [U-Boot] [PATCH 2/5] net: ns9750: drop " Mike Frysinger
@ 2011-10-23 21:03 ` Wolfgang Denk
0 siblings, 0 replies; 13+ messages in thread
From: Wolfgang Denk @ 2011-10-23 21:03 UTC (permalink / raw)
To: u-boot
Dear Mike Frysinger,
In message <1318795453-18090-3-git-send-email-vapier@gentoo.org> you wrote:
> Only one board uses this driver (ns9750dev), but the board doesn't seem
> to have an entry to actually build it in the Makefile/boards.cfg, so just
> delete net support from its board config.
>
> Signed-off-by: Mike Frysinger <vapier@gentoo.org>
> ---
> drivers/net/Makefile | 1 -
> drivers/net/ns9750_eth.c | 789 -------------------------------------------
> include/configs/ns9750dev.h | 2 -
> include/ns9750_eth.h | 298 ----------------
> 4 files changed, 0 insertions(+), 1090 deletions(-)
> delete mode 100644 drivers/net/ns9750_eth.c
> delete mode 100644 include/ns9750_eth.h
Applied, thanks.
Best regards,
Wolfgang Denk
--
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
I'm frequently appalled by the low regard you Earthmen have for life.
-- Spock, "The Galileo Seven", stardate 2822.3
^ permalink raw reply [flat|nested] 13+ messages in thread
* [U-Boot] [PATCH 3/5] net: s3c4510b_eth: drop unused !NET_MULTI driver
2011-10-16 20:04 ` [U-Boot] [PATCH 3/5] net: s3c4510b_eth: drop unused " Mike Frysinger
@ 2011-10-23 21:04 ` Wolfgang Denk
0 siblings, 0 replies; 13+ messages in thread
From: Wolfgang Denk @ 2011-10-23 21:04 UTC (permalink / raw)
To: u-boot
Dear Mike Frysinger,
In message <1318795453-18090-4-git-send-email-vapier@gentoo.org> you wrote:
> No boards appear to use this driver, and it doesn't support NET_MULTI,
> so punt the old driver.
>
> Signed-off-by: Mike Frysinger <vapier@gentoo.org>
> ---
> drivers/net/Makefile | 1 -
> drivers/net/s3c4510b_eth.c | 241 -----------------------------------
> drivers/net/s3c4510b_eth.h | 302 --------------------------------------------
> 3 files changed, 0 insertions(+), 544 deletions(-)
> delete mode 100644 drivers/net/s3c4510b_eth.c
> delete mode 100644 drivers/net/s3c4510b_eth.h
Applied, thanks.
Best regards,
Wolfgang Denk
--
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
You see things; and you say ``Why?'' But I dream things that never
were; and I say ``Why not?''
- George Bernard Shaw _Back to Methuselah_ (1921) pt. 1, act 1
^ permalink raw reply [flat|nested] 13+ messages in thread
* [U-Boot] [PATCH 4/5] net: sc589: drop unused !NET_MULTI driver
2011-10-16 20:04 ` [U-Boot] [PATCH 4/5] net: sc589: " Mike Frysinger
@ 2011-10-23 21:06 ` Wolfgang Denk
0 siblings, 0 replies; 13+ messages in thread
From: Wolfgang Denk @ 2011-10-23 21:06 UTC (permalink / raw)
To: u-boot
Dear Mike Frysinger,
In message <1318795453-18090-5-git-send-email-vapier@gentoo.org> you wrote:
> No boards appear to use this driver, and it doesn't support NET_MULTI,
> so punt the old driver.
>
> Signed-off-by: Mike Frysinger <vapier@gentoo.org>
> ---
> drivers/net/3c589.c | 517 --------------------------------------------------
> drivers/net/3c589.h | 435 ------------------------------------------
> drivers/net/Makefile | 1 -
> 3 files changed, 0 insertions(+), 953 deletions(-)
> delete mode 100644 drivers/net/3c589.c
> delete mode 100644 drivers/net/3c589.h
Applied, thanks.
Best regards,
Wolfgang Denk
--
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
Any technology distinguishable from magic is insufficiently advanced.
^ permalink raw reply [flat|nested] 13+ messages in thread
* [U-Boot] [PATCH 5/5] net: xilinx_enet: drop unused !NET_MULTI driver
2011-10-16 20:04 ` [U-Boot] [PATCH 5/5] net: xilinx_enet: " Mike Frysinger
2011-10-16 21:44 ` Simon Glass
@ 2011-10-23 21:08 ` Wolfgang Denk
1 sibling, 0 replies; 13+ messages in thread
From: Wolfgang Denk @ 2011-10-23 21:08 UTC (permalink / raw)
To: u-boot
Dear Mike Frysinger,
In message <1318795453-18090-6-git-send-email-vapier@gentoo.org> you wrote:
> This driver doesn't support the NET_MULTI framework, and I can't find
> any boards/configs/files that reference this subdir, so punt it all.
>
> Signed-off-by: Mike Frysinger <vapier@gentoo.org>
> ---
> board/xilinx/xilinx_enet/emac_adapter.c | 165 ----
> board/xilinx/xilinx_enet/xemac.c | 844 ------------------
> board/xilinx/xilinx_enet/xemac.h | 673 ---------------
> board/xilinx/xilinx_enet/xemac_g.c | 60 --
> board/xilinx/xilinx_enet/xemac_i.h | 207 -----
> board/xilinx/xilinx_enet/xemac_intr.c | 402 ---------
> board/xilinx/xilinx_enet/xemac_intr_dma.c | 1344 -----------------------------
> board/xilinx/xilinx_enet/xemac_l.h | 462 ----------
> board/xilinx/xilinx_enet/xemac_options.c | 318 -------
> board/xilinx/xilinx_enet/xemac_polled.c | 482 -----------
> 10 files changed, 0 insertions(+), 4957 deletions(-)
> delete mode 100644 board/xilinx/xilinx_enet/emac_adapter.c
> delete mode 100644 board/xilinx/xilinx_enet/xemac.c
> delete mode 100644 board/xilinx/xilinx_enet/xemac.h
> delete mode 100644 board/xilinx/xilinx_enet/xemac_g.c
> delete mode 100644 board/xilinx/xilinx_enet/xemac_i.h
> delete mode 100644 board/xilinx/xilinx_enet/xemac_intr.c
> delete mode 100644 board/xilinx/xilinx_enet/xemac_intr_dma.c
> delete mode 100644 board/xilinx/xilinx_enet/xemac_l.h
> delete mode 100644 board/xilinx/xilinx_enet/xemac_options.c
> delete mode 100644 board/xilinx/xilinx_enet/xemac_polled.c
Applied, thanks.
Best regards,
Wolfgang Denk
--
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
Man is the best computer we can put aboard a spacecraft ... and the
only one that can be mass produced with unskilled labor.
- Wernher von Braun
^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2011-10-23 21:08 UTC | newest]
Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-16 20:04 [U-Boot] [PATCH 0/5] !NET_MULTI cleanup part 2 Mike Frysinger
2011-10-16 20:04 ` [U-Boot] [PATCH 1/5] net: enc28j60_lpc2292: drop unused !NET_MULTI driver Mike Frysinger
2011-10-23 21:01 ` Wolfgang Denk
2011-10-16 20:04 ` [U-Boot] [PATCH 2/5] net: ns9750: drop " Mike Frysinger
2011-10-23 21:03 ` Wolfgang Denk
2011-10-16 20:04 ` [U-Boot] [PATCH 3/5] net: s3c4510b_eth: drop unused " Mike Frysinger
2011-10-23 21:04 ` Wolfgang Denk
2011-10-16 20:04 ` [U-Boot] [PATCH 4/5] net: sc589: " Mike Frysinger
2011-10-23 21:06 ` Wolfgang Denk
2011-10-16 20:04 ` [U-Boot] [PATCH 5/5] net: xilinx_enet: " Mike Frysinger
2011-10-16 21:44 ` Simon Glass
2011-10-16 22:12 ` Mike Frysinger
2011-10-23 21:08 ` Wolfgang Denk
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox