7a3c66e2d3
Implements the KS8695 ethernet device (ks8695net). This driver is only of use on the KS8695 which is an ARM9 based SoC. The documentation on this SoC is sparse and poor, with barely a register description and a rough outline of how the ethernet works, this driver was therefore written with strong reference to the Micrel supplied Linux 2.6.9 port, and to Andrew Victor's ks8695eth driver. Signed-off-by: Daniel Silverstone <dsilvers@simtec.co.uk> Signed-off-by: Vincent Sanders <vince@simtec.co.uk> Acked-by: Ben Dooks <ben@simtec.co.uk> Signed-off-by: David S. Miller <davem@davemloft.net>
14 lines
421 B
Makefile
14 lines
421 B
Makefile
# File: drivers/net/arm/Makefile
|
|
#
|
|
# Makefile for the ARM network device drivers
|
|
#
|
|
|
|
obj-$(CONFIG_ARM_AM79C961A) += am79c961a.o
|
|
obj-$(CONFIG_ARM_ETHERH) += etherh.o ../8390.o
|
|
obj-$(CONFIG_ARM_ETHER3) += ether3.o
|
|
obj-$(CONFIG_ARM_ETHER1) += ether1.o
|
|
obj-$(CONFIG_ARM_AT91_ETHER) += at91_ether.o
|
|
obj-$(CONFIG_ARM_KS8695_ETHER) += ks8695net.o
|
|
obj-$(CONFIG_EP93XX_ETH) += ep93xx_eth.o
|
|
obj-$(CONFIG_IXP4XX_ETH) += ixp4xx_eth.o
|