Skip to content

Commit 5346ebf

Browse files
author
Jeff Kirsher
committed
eth16i: Move the Allied Telesis/Fujitsu drivers
Move the Allied Telesis/Fujitsu drivers into drivers/net/ethernet/fujitsu/ and make the necessary Kconfig and Makefile changes. CC: Shingo Fujimoto <shingo@flab.fujitsu.co.jp> CC: Yutaka Tamiya <tamy@flab.fujitsu.co.jp> CC: Rene Schmit <rene@bss.lu> CC: Mika Kuoppala <miku@iki.fi> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
1 parent f2148a4 commit 5346ebf

File tree

12 files changed

+63
-55
lines changed

12 files changed

+63
-55
lines changed

MAINTAINERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2525,7 +2525,7 @@ F: net/bridge/
25252525
ETHERTEAM 16I DRIVER
25262526
M: Mika Kuoppala <miku@iki.fi>
25272527
S: Maintained
2528-
F: drivers/net/eth16i.c
2528+
F: drivers/net/ethernet/fujitsu/eth16i.c
25292529

25302530
EXT2 FILE SYSTEM
25312531
M: Jan Kara <jack@suse.cz>

drivers/net/Kconfig

Lines changed: 0 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -428,18 +428,6 @@ config DNET
428428
To compile this driver as a module, choose M here: the module
429429
will be called dnet.
430430

431-
config AT1700
432-
tristate "AT1700/1720 support (EXPERIMENTAL)"
433-
depends on (ISA || MCA_LEGACY) && EXPERIMENTAL
434-
select CRC32
435-
---help---
436-
If you have a network (Ethernet) card of this type, say Y and read
437-
the Ethernet-HOWTO, available from
438-
<http://www.tldp.org/docs.html#howto>.
439-
440-
To compile this driver as a module, choose M here. The module
441-
will be called at1700.
442-
443431
config HP100
444432
tristate "HP 10/100VG PCLAN (ISA, EISA, PCI) support"
445433
depends on ISA || EISA || PCI
@@ -451,34 +439,6 @@ config HP100
451439
To compile this driver as a module, choose M here. The module
452440
will be called hp100.
453441

454-
config NET_ISA
455-
bool "Other ISA cards"
456-
depends on ISA
457-
---help---
458-
If your network (Ethernet) card hasn't been mentioned yet and its
459-
bus system (that's the way the cards talks to the other components
460-
of your computer) is ISA (as opposed to EISA, VLB or PCI), say Y.
461-
Make sure you know the name of your card. Read the Ethernet-HOWTO,
462-
available from <http://www.tldp.org/docs.html#howto>.
463-
464-
If unsure, say Y.
465-
466-
Note that the answer to this question doesn't directly affect the
467-
kernel: saying N will just cause the configurator to skip all
468-
the remaining ISA network card questions. If you say Y, you will be
469-
asked for your specific card in the following questions.
470-
471-
config ETH16I
472-
tristate "ICL EtherTeam 16i/32 support"
473-
depends on NET_ISA
474-
help
475-
If you have a network (Ethernet) card of this type, say Y and read
476-
the Ethernet-HOWTO, available from
477-
<http://www.tldp.org/docs.html#howto>.
478-
479-
To compile this driver as a module, choose M here. The module
480-
will be called eth16i.
481-
482442
config NET_PCI
483443
bool "EISA, VLB, PCI and on board controllers"
484444
depends on ISA || EISA || PCI

drivers/net/Makefile

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,10 +96,7 @@ obj-$(CONFIG_IFB) += ifb.o
9696
obj-$(CONFIG_MACVLAN) += macvlan.o
9797
obj-$(CONFIG_MACVTAP) += macvtap.o
9898
obj-$(CONFIG_DEFXX) += defxx.o
99-
obj-$(CONFIG_AT1700) += at1700.o
10099
obj-$(CONFIG_CPMAC) += cpmac.o
101-
102-
obj-$(CONFIG_ETH16I) += eth16i.o
103100
obj-$(CONFIG_EQUALIZER) += eql.o
104101
obj-$(CONFIG_KORINA) += korina.o
105102
obj-$(CONFIG_MIPS_SIM_NET) += mipsnet.o

drivers/net/ethernet/Kconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ source "drivers/net/ethernet/dlink/Kconfig"
2424
source "drivers/net/ethernet/emulex/Kconfig"
2525
source "drivers/net/ethernet/neterion/Kconfig"
2626
source "drivers/net/ethernet/faraday/Kconfig"
27+
source "drivers/net/ethernet/fujitsu/Kconfig"
2728
source "drivers/net/ethernet/ibm/Kconfig"
2829
source "drivers/net/ethernet/intel/Kconfig"
2930
source "drivers/net/ethernet/i825xx/Kconfig"

drivers/net/ethernet/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ obj-$(CONFIG_NET_VENDOR_DLINK) += dlink/
1616
obj-$(CONFIG_NET_VENDOR_EMULEX) += emulex/
1717
obj-$(CONFIG_NET_VENDOR_EXAR) += neterion/
1818
obj-$(CONFIG_NET_VENDOR_FARADAY) += faraday/
19+
obj-$(CONFIG_NET_VENDOR_FUJITSU) += fujitsu/
1920
obj-$(CONFIG_NET_VENDOR_IBM) += ibm/
2021
obj-$(CONFIG_NET_VENDOR_INTEL) += intel/
2122
obj-$(CONFIG_NET_VENDOR_I825XX) += i825xx/
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
#
2+
# Fujitsu Network device configuration
3+
#
4+
5+
config NET_VENDOR_FUJITSU
6+
bool "Fujitsu devices"
7+
depends on ISA || PCMCIA || ((ISA || MCA_LEGACY) && EXPERIMENTAL)
8+
---help---
9+
If you have a network (Ethernet) card belonging to this class, say Y
10+
and read the Ethernet-HOWTO, available from
11+
<http://www.tldp.org/docs.html#howto>.
12+
13+
Note that the answer to this question doesn't directly affect the
14+
the questions about Fujitsu cards. If you say Y, you will be asked for
15+
your specific card in the following questions.
16+
17+
if NET_VENDOR_FUJITSU
18+
19+
config AT1700
20+
tristate "AT1700/1720 support (EXPERIMENTAL)"
21+
depends on (ISA || MCA_LEGACY) && EXPERIMENTAL
22+
select CRC32
23+
---help---
24+
If you have a network (Ethernet) card of this type, say Y and read
25+
the Ethernet-HOWTO, available from
26+
<http://www.tldp.org/docs.html#howto>.
27+
28+
To compile this driver as a module, choose M here. The module
29+
will be called at1700.
30+
31+
config PCMCIA_FMVJ18X
32+
tristate "Fujitsu FMV-J18x PCMCIA support"
33+
depends on PCMCIA
34+
select CRC32
35+
---help---
36+
Say Y here if you intend to attach a Fujitsu FMV-J18x or compatible
37+
PCMCIA (PC-card) Ethernet card to your computer.
38+
39+
To compile this driver as a module, choose M here: the module will be
40+
called fmvj18x_cs. If unsure, say N.
41+
42+
config ETH16I
43+
tristate "ICL EtherTeam 16i/32 support"
44+
depends on ISA
45+
---help---
46+
If you have a network (Ethernet) card of this type, say Y and read
47+
the Ethernet-HOWTO, available from
48+
<http://www.tldp.org/docs.html#howto>.
49+
50+
To compile this driver as a module, choose M here. The module
51+
will be called eth16i.
52+
53+
endif # NET_VENDOR_FUJITSU
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#
2+
# Makefile for the Fujitsu network device drivers.
3+
#
4+
5+
obj-$(CONFIG_AT1700) += at1700.o
6+
obj-$(CONFIG_ETH16I) += eth16i.o
7+
obj-$(CONFIG_PCMCIA_FMVJ18X) += fmvj18x_cs.o
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)