Skip to content

Commit 4796417

Browse files
Ilya Yanokdavem330
authored andcommitted
dnet: Dave DNET ethernet controller driver (updated)
Driver for Dave DNET ethernet controller found on Dave/DENX QongEVB-LITE FPGA. Heavily based on Dave sources, I've just adopted it to current kernel version and done some code cleanup. Signed-off-by: Ilya Yanok <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent ff8cf9a commit 4796417

File tree

4 files changed

+1231
-0
lines changed

4 files changed

+1231
-0
lines changed

drivers/net/Kconfig

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1040,6 +1040,17 @@ config NI65
10401040
To compile this driver as a module, choose M here. The module
10411041
will be called ni65.
10421042

1043+
config DNET
1044+
tristate "Dave ethernet support (DNET)"
1045+
depends on NET_ETHERNET
1046+
select PHYLIB
1047+
help
1048+
The Dave ethernet interface (DNET) is found on Qong Board FPGA.
1049+
Say Y to include support for the DNET chip.
1050+
1051+
To compile this driver as a module, choose M here: the module
1052+
will be called dnet.
1053+
10431054
source "drivers/net/tulip/Kconfig"
10441055

10451056
config AT1700

drivers/net/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -231,6 +231,7 @@ obj-$(CONFIG_ENC28J60) += enc28j60.o
231231

232232
obj-$(CONFIG_XTENSA_XT2000_SONIC) += xtsonic.o
233233

234+
obj-$(CONFIG_DNET) += dnet.o
234235
obj-$(CONFIG_MACB) += macb.o
235236

236237
obj-$(CONFIG_ARM) += arm/

0 commit comments

Comments
 (0)