Skip to content

Commit 8f14820

Browse files
committed
eth: fealnx: bring back this old driver
This reverts commit d5e2d03. We have a report of this chip being used on a SURECOM EP-320X-S 100/10M Ethernet PCI Adapter which could still have been purchased in some parts of the world 3 years ago. Cc: [email protected] Link: https://bugzilla.kernel.org/show_bug.cgi?id=217151 Fixes: d5e2d03 ("eth: fealnx: delete the driver for Myson MTD-800") Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Jakub Kicinski <[email protected]>
1 parent c8b8a3c commit 8f14820

File tree

5 files changed

+1966
-0
lines changed

5 files changed

+1966
-0
lines changed

arch/mips/configs/mtx1_defconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -284,6 +284,7 @@ CONFIG_IXGB=m
284284
CONFIG_SKGE=m
285285
CONFIG_SKY2=m
286286
CONFIG_MYRI10GE=m
287+
CONFIG_FEALNX=m
287288
CONFIG_NATSEMI=m
288289
CONFIG_NS83820=m
289290
CONFIG_S2IO=m

arch/powerpc/configs/ppc6xx_defconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -461,6 +461,7 @@ CONFIG_MV643XX_ETH=m
461461
CONFIG_SKGE=m
462462
CONFIG_SKY2=m
463463
CONFIG_MYRI10GE=m
464+
CONFIG_FEALNX=m
464465
CONFIG_NATSEMI=m
465466
CONFIG_NS83820=m
466467
CONFIG_PCMCIA_AXNET=m

drivers/net/ethernet/Kconfig

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,16 @@ source "drivers/net/ethernet/mscc/Kconfig"
132132
source "drivers/net/ethernet/microsoft/Kconfig"
133133
source "drivers/net/ethernet/moxa/Kconfig"
134134
source "drivers/net/ethernet/myricom/Kconfig"
135+
136+
config FEALNX
137+
tristate "Myson MTD-8xx PCI Ethernet support"
138+
depends on PCI
139+
select CRC32
140+
select MII
141+
help
142+
Say Y here to support the Myson MTD-800 family of PCI-based Ethernet
143+
cards. <http://www.myson.com.tw/>
144+
135145
source "drivers/net/ethernet/ni/Kconfig"
136146
source "drivers/net/ethernet/natsemi/Kconfig"
137147
source "drivers/net/ethernet/neterion/Kconfig"

drivers/net/ethernet/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ obj-$(CONFIG_NET_VENDOR_MICROCHIP) += microchip/
6464
obj-$(CONFIG_NET_VENDOR_MICROSEMI) += mscc/
6565
obj-$(CONFIG_NET_VENDOR_MOXART) += moxa/
6666
obj-$(CONFIG_NET_VENDOR_MYRI) += myricom/
67+
obj-$(CONFIG_FEALNX) += fealnx.o
6768
obj-$(CONFIG_NET_VENDOR_NATSEMI) += natsemi/
6869
obj-$(CONFIG_NET_VENDOR_NETERION) += neterion/
6970
obj-$(CONFIG_NET_VENDOR_NETRONOME) += netronome/

0 commit comments

Comments
 (0)