Skip to content

Commit 1d22e05

Browse files
buytenhJeff Garzik
authored andcommitted
[PATCH] Cirrus Logic ep93xx ethernet driver
The Cirrus Logic ep93xx is an ARM SoC that includes an ethernet MAC -- this patch adds a driver for that ethernet MAC. Signed-off-by: Lennert Buytenhek <buytenh@wantstofly.org> Signed-off-by: Jeff Garzik <jeff@garzik.org>
1 parent 28eb177 commit 1d22e05

File tree

5 files changed

+959
-0
lines changed

5 files changed

+959
-0
lines changed

drivers/net/arm/Kconfig

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,3 +39,10 @@ config ARM_AT91_ETHER
3939
help
4040
If you wish to compile a kernel for the AT91RM9200 and enable
4141
ethernet support, then you should always answer Y to this.
42+
43+
config EP93XX_ETH
44+
tristate "EP93xx Ethernet support"
45+
depends on NET_ETHERNET && ARM && ARCH_EP93XX
46+
help
47+
This is a driver for the ethernet hardware included in EP93xx CPUs.
48+
Say Y if you are building a kernel for EP93xx based devices.

drivers/net/arm/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@ obj-$(CONFIG_ARM_ETHERH) += etherh.o
88
obj-$(CONFIG_ARM_ETHER3) += ether3.o
99
obj-$(CONFIG_ARM_ETHER1) += ether1.o
1010
obj-$(CONFIG_ARM_AT91_ETHER) += at91_ether.o
11+
obj-$(CONFIG_EP93XX_ETH) += ep93xx_eth.o

0 commit comments

Comments
 (0)