File tree Expand file tree Collapse file tree 5 files changed +802
-0
lines changed Expand file tree Collapse file tree 5 files changed +802
-0
lines changed Original file line number Diff line number Diff line change @@ -183,6 +183,7 @@ source "drivers/net/ethernet/tehuti/Kconfig"
183
183
source "drivers/net/ethernet/ti/Kconfig"
184
184
source "drivers/net/ethernet/toshiba/Kconfig"
185
185
source "drivers/net/ethernet/tundra/Kconfig"
186
+ source "drivers/net/ethernet/vertexcom/Kconfig"
186
187
source "drivers/net/ethernet/via/Kconfig"
187
188
source "drivers/net/ethernet/wiznet/Kconfig"
188
189
source "drivers/net/ethernet/xilinx/Kconfig"
Original file line number Diff line number Diff line change @@ -93,6 +93,7 @@ obj-$(CONFIG_NET_VENDOR_TEHUTI) += tehuti/
93
93
obj-$(CONFIG_NET_VENDOR_TI) += ti/
94
94
obj-$(CONFIG_NET_VENDOR_TOSHIBA) += toshiba/
95
95
obj-$(CONFIG_NET_VENDOR_TUNDRA) += tundra/
96
+ obj-$(CONFIG_NET_VENDOR_VERTEXCOM) += vertexcom/
96
97
obj-$(CONFIG_NET_VENDOR_VIA) += via/
97
98
obj-$(CONFIG_NET_VENDOR_WIZNET) += wiznet/
98
99
obj-$(CONFIG_NET_VENDOR_XILINX) += xilinx/
Original file line number Diff line number Diff line change
1
+ # SPDX-License-Identifier: GPL-2.0-only
2
+ #
3
+ # Vertexcom network device configuration
4
+ #
5
+
6
+ config NET_VENDOR_VERTEXCOM
7
+ bool "Vertexcom devices"
8
+ default y
9
+ help
10
+ If you have a network (Ethernet) card belonging to this class, say Y.
11
+
12
+ Note that the answer to this question doesn't directly affect the
13
+ kernel: saying N will just cause the configurator to skip all
14
+ the questions about Vertexcom cards. If you say Y, you will be asked
15
+ for your specific card in the following questions.
16
+
17
+ if NET_VENDOR_VERTEXCOM
18
+
19
+ config MSE102X
20
+ tristate "Vertexcom MSE102x SPI"
21
+ depends on SPI
22
+ help
23
+ SPI driver for Vertexcom MSE102x SPI attached network chip.
24
+
25
+ endif # NET_VENDOR_VERTEXCOM
Original file line number Diff line number Diff line change
1
+ # SPDX-License-Identifier: GPL-2.0
2
+ #
3
+ # Makefile for the Vertexcom network device drivers.
4
+ #
5
+
6
+ obj-$(CONFIG_MSE102X) += mse102x.o
You can’t perform that action at this time.
0 commit comments