From 78a0106e8f4fd4c20f6611ca7ed857705a365509 Mon Sep 17 00:00:00 2001 From: Dobrica Pavlinusic Date: Fri, 4 May 2007 21:15:37 -0500 Subject: [PATCH] added driver for IP1000A from http://www.icplus.com.tw/driver-pp-IP1000A.html and make minor modifications to enable compilation within kernel source --- drivers/net/Kconfig | 8 ++++++++ drivers/net/Makefile | 1 + 2 files changed, 9 insertions(+) diff --git a/drivers/net/Kconfig b/drivers/net/Kconfig index a3d46ea3..8d0b408e 100644 --- a/drivers/net/Kconfig +++ b/drivers/net/Kconfig @@ -1927,6 +1927,14 @@ config ACENIC_OMIT_TIGON_I The safe and default value for this is N. +config IP1000A + tristate "IC PLUS IP1000 1000/100/10 based Ethernet" + depends on PCI +# select CRC32 + help + This driver supports IP1000A cards. Original source: + http://www.icplus.com.tw/driver-pp-IP1000A.html + config DL2K tristate "D-Link DL2000-based Gigabit Ethernet support" depends on PCI diff --git a/drivers/net/Makefile b/drivers/net/Makefile index 33af8336..2bfe584d 100644 --- a/drivers/net/Makefile +++ b/drivers/net/Makefile @@ -3,6 +3,7 @@ # obj-$(CONFIG_E1000) += e1000/ +obj-$(CONFIG_IP1000A) += ip1000a/ obj-$(CONFIG_IBM_EMAC) += ibm_emac/ obj-$(CONFIG_IXGB) += ixgb/ obj-$(CONFIG_CHELSIO_T1) += chelsio/ -- 2.20.1