diff options
-rw-r--r-- | MAINTAINERS | 2 | ||||
-rw-r--r-- | drivers/net/Kconfig | 11 | ||||
-rw-r--r-- | drivers/net/Makefile | 1 | ||||
-rw-r--r-- | drivers/net/ethernet/Kconfig | 1 | ||||
-rw-r--r-- | drivers/net/ethernet/Makefile | 1 | ||||
-rw-r--r-- | drivers/net/ethernet/hp/Kconfig | 31 | ||||
-rw-r--r-- | drivers/net/ethernet/hp/Makefile | 5 | ||||
-rw-r--r-- | drivers/net/ethernet/hp/hp100.c (renamed from drivers/net/hp100.c) | 0 | ||||
-rw-r--r-- | drivers/net/ethernet/hp/hp100.h (renamed from drivers/net/hp100.h) | 0 |
9 files changed, 39 insertions, 13 deletions
diff --git a/MAINTAINERS b/MAINTAINERS index 8ca886e34b7f..dfa4269fd4d7 100644 --- a/MAINTAINERS +++ b/MAINTAINERS | |||
@@ -3066,7 +3066,7 @@ F: drivers/platform/x86/tc1100-wmi.c | |||
3066 | HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series | 3066 | HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series |
3067 | M: Jaroslav Kysela <perex@perex.cz> | 3067 | M: Jaroslav Kysela <perex@perex.cz> |
3068 | S: Maintained | 3068 | S: Maintained |
3069 | F: drivers/net/hp100.* | 3069 | F: drivers/net/ethernet/hp/hp100.* |
3070 | 3070 | ||
3071 | HPET: High Precision Event Timers driver | 3071 | HPET: High Precision Event Timers driver |
3072 | M: Clemens Ladisch <clemens@ladisch.de> | 3072 | M: Clemens Ladisch <clemens@ladisch.de> |
diff --git a/drivers/net/Kconfig b/drivers/net/Kconfig index e6e10a475df3..39ba7999859d 100644 --- a/drivers/net/Kconfig +++ b/drivers/net/Kconfig | |||
@@ -320,17 +320,6 @@ config DNET | |||
320 | To compile this driver as a module, choose M here: the module | 320 | To compile this driver as a module, choose M here: the module |
321 | will be called dnet. | 321 | will be called dnet. |
322 | 322 | ||
323 | config HP100 | ||
324 | tristate "HP 10/100VG PCLAN (ISA, EISA, PCI) support" | ||
325 | depends on ISA || EISA || PCI | ||
326 | help | ||
327 | If you have a network (Ethernet) card of this type, say Y and read | ||
328 | the Ethernet-HOWTO, available from | ||
329 | <http://www.tldp.org/docs.html#howto>. | ||
330 | |||
331 | To compile this driver as a module, choose M here. The module | ||
332 | will be called hp100. | ||
333 | |||
334 | config NET_PCI | 323 | config NET_PCI |
335 | bool "EISA, VLB, PCI and on board controllers" | 324 | bool "EISA, VLB, PCI and on board controllers" |
336 | depends on ISA || EISA || PCI | 325 | depends on ISA || EISA || PCI |
diff --git a/drivers/net/Makefile b/drivers/net/Makefile index 670e17526b5f..5b37149a4f7a 100644 --- a/drivers/net/Makefile +++ b/drivers/net/Makefile | |||
@@ -26,7 +26,6 @@ obj-$(CONFIG_SH_ETH) += sh_eth.o | |||
26 | 26 | ||
27 | obj-$(CONFIG_NET) += Space.o loopback.o | 27 | obj-$(CONFIG_NET) += Space.o loopback.o |
28 | obj-$(CONFIG_NET_SB1000) += sb1000.o | 28 | obj-$(CONFIG_NET_SB1000) += sb1000.o |
29 | obj-$(CONFIG_HP100) += hp100.o | ||
30 | 29 | ||
31 | obj-$(CONFIG_PPP) += ppp_generic.o | 30 | obj-$(CONFIG_PPP) += ppp_generic.o |
32 | obj-$(CONFIG_PPP_ASYNC) += ppp_async.o | 31 | obj-$(CONFIG_PPP_ASYNC) += ppp_async.o |
diff --git a/drivers/net/ethernet/Kconfig b/drivers/net/ethernet/Kconfig index 8cd38c91d549..c1ce35670ee1 100644 --- a/drivers/net/ethernet/Kconfig +++ b/drivers/net/ethernet/Kconfig | |||
@@ -30,6 +30,7 @@ source "drivers/net/ethernet/neterion/Kconfig" | |||
30 | source "drivers/net/ethernet/faraday/Kconfig" | 30 | source "drivers/net/ethernet/faraday/Kconfig" |
31 | source "drivers/net/ethernet/freescale/Kconfig" | 31 | source "drivers/net/ethernet/freescale/Kconfig" |
32 | source "drivers/net/ethernet/fujitsu/Kconfig" | 32 | source "drivers/net/ethernet/fujitsu/Kconfig" |
33 | source "drivers/net/ethernet/hp/Kconfig" | ||
33 | source "drivers/net/ethernet/ibm/Kconfig" | 34 | source "drivers/net/ethernet/ibm/Kconfig" |
34 | source "drivers/net/ethernet/intel/Kconfig" | 35 | source "drivers/net/ethernet/intel/Kconfig" |
35 | source "drivers/net/ethernet/i825xx/Kconfig" | 36 | source "drivers/net/ethernet/i825xx/Kconfig" |
diff --git a/drivers/net/ethernet/Makefile b/drivers/net/ethernet/Makefile index 50e040c847d6..34e84fa3f43e 100644 --- a/drivers/net/ethernet/Makefile +++ b/drivers/net/ethernet/Makefile | |||
@@ -22,6 +22,7 @@ obj-$(CONFIG_NET_VENDOR_EXAR) += neterion/ | |||
22 | obj-$(CONFIG_NET_VENDOR_FARADAY) += faraday/ | 22 | obj-$(CONFIG_NET_VENDOR_FARADAY) += faraday/ |
23 | obj-$(CONFIG_NET_VENDOR_FREESCALE) += freescale/ | 23 | obj-$(CONFIG_NET_VENDOR_FREESCALE) += freescale/ |
24 | obj-$(CONFIG_NET_VENDOR_FUJITSU) += fujitsu/ | 24 | obj-$(CONFIG_NET_VENDOR_FUJITSU) += fujitsu/ |
25 | obj-$(CONFIG_NET_VENDOR_HP) += hp/ | ||
25 | obj-$(CONFIG_NET_VENDOR_IBM) += ibm/ | 26 | obj-$(CONFIG_NET_VENDOR_IBM) += ibm/ |
26 | obj-$(CONFIG_NET_VENDOR_INTEL) += intel/ | 27 | obj-$(CONFIG_NET_VENDOR_INTEL) += intel/ |
27 | obj-$(CONFIG_NET_VENDOR_I825XX) += i825xx/ | 28 | obj-$(CONFIG_NET_VENDOR_I825XX) += i825xx/ |
diff --git a/drivers/net/ethernet/hp/Kconfig b/drivers/net/ethernet/hp/Kconfig new file mode 100644 index 000000000000..07b42e963143 --- /dev/null +++ b/drivers/net/ethernet/hp/Kconfig | |||
@@ -0,0 +1,31 @@ | |||
1 | # | ||
2 | # HP network device configuration | ||
3 | # | ||
4 | |||
5 | config NET_VENDOR_HP | ||
6 | bool "HP devices" | ||
7 | depends on ISA || EISA || PCI | ||
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 | kernel: saying N will just cause the configurator to skip all | ||
15 | the questions about HP cards. If you say Y, you will be asked for | ||
16 | your specific card in the following questions. | ||
17 | |||
18 | if NET_VENDOR_HP | ||
19 | |||
20 | config HP100 | ||
21 | tristate "HP 10/100VG PCLAN (ISA, EISA, PCI) support" | ||
22 | depends on (ISA || EISA || PCI) | ||
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 hp100. | ||
30 | |||
31 | endif # NET_VENDOR_HP | ||
diff --git a/drivers/net/ethernet/hp/Makefile b/drivers/net/ethernet/hp/Makefile new file mode 100644 index 000000000000..20b6918b52bd --- /dev/null +++ b/drivers/net/ethernet/hp/Makefile | |||
@@ -0,0 +1,5 @@ | |||
1 | # | ||
2 | # Makefile for the HP network device drivers. | ||
3 | # | ||
4 | |||
5 | obj-$(CONFIG_HP100) += hp100.o | ||
diff --git a/drivers/net/hp100.c b/drivers/net/ethernet/hp/hp100.c index b6519c1ba7e1..b6519c1ba7e1 100644 --- a/drivers/net/hp100.c +++ b/drivers/net/ethernet/hp/hp100.c | |||
diff --git a/drivers/net/hp100.h b/drivers/net/ethernet/hp/hp100.h index b60e96fe38b4..b60e96fe38b4 100644 --- a/drivers/net/hp100.h +++ b/drivers/net/ethernet/hp/hp100.h | |||