Commit e39e10f0 authored by Yanling Song's avatar Yanling Song Committed by Zheng Zengkai
Browse files

net/spnic: Remove spnic driver.

Ramaxel inclusion
category: bugfix
bugzilla: https://gitee.com/openeuler/kernel/issues/I4ZR0O


CVE: NA

----------------------------------

There are some issues of the driver that cannot be fixed now.
The driver is not good enough for the LTS quality requirements
of openEuler,so remove it.

Signed-off-by: default avatarYanling Song <songyl@ramaxel.com>
Reviewed-by: default avatarYang Gan <yanggan@ramaxel.com>
Acked-by: default avatarXie Xiuqi <xiexiuqi@huawei.com>
Signed-off-by: default avatarZheng Zengkai <zhengzengkai@huawei.com>
parent a4b378ab
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -2815,8 +2815,6 @@ CONFIG_NET_VENDOR_QUALCOMM=y
# CONFIG_QCA7000_SPI is not set
CONFIG_QCOM_EMAC=m
# CONFIG_RMNET is not set
CONFIG_NET_VENDOR_RAMAXEL=y
CONFIG_SPNIC=m
# CONFIG_NET_VENDOR_RDC is not set
CONFIG_NET_VENDOR_REALTEK=y
CONFIG_8139CP=m
+0 −2
Original line number Diff line number Diff line
@@ -2792,8 +2792,6 @@ CONFIG_QED_ISCSI=y
CONFIG_QED_FCOE=y
CONFIG_QED_OOO=y
# CONFIG_NET_VENDOR_QUALCOMM is not set
CONFIG_NET_VENDOR_RAMAXEL=y
CONFIG_SPNIC=m
# CONFIG_NET_VENDOR_RDC is not set
CONFIG_NET_VENDOR_REALTEK=y
# CONFIG_ATP is not set
+0 −1
Original line number Diff line number Diff line
@@ -160,7 +160,6 @@ source "drivers/net/ethernet/pasemi/Kconfig"
source "drivers/net/ethernet/pensando/Kconfig"
source "drivers/net/ethernet/qlogic/Kconfig"
source "drivers/net/ethernet/qualcomm/Kconfig"
source "drivers/net/ethernet/ramaxel/Kconfig"
source "drivers/net/ethernet/rdc/Kconfig"
source "drivers/net/ethernet/realtek/Kconfig"
source "drivers/net/ethernet/renesas/Kconfig"
+0 −1
Original line number Diff line number Diff line
@@ -71,7 +71,6 @@ obj-$(CONFIG_NET_VENDOR_PACKET_ENGINES) += packetengines/
obj-$(CONFIG_NET_VENDOR_PASEMI) += pasemi/
obj-$(CONFIG_NET_VENDOR_QLOGIC) += qlogic/
obj-$(CONFIG_NET_VENDOR_QUALCOMM) += qualcomm/
obj-$(CONFIG_NET_VENDOR_RAMAXEL) += ramaxel/
obj-$(CONFIG_NET_VENDOR_REALTEK) += realtek/
obj-$(CONFIG_NET_VENDOR_RENESAS) += renesas/
obj-$(CONFIG_NET_VENDOR_RDC) += rdc/
+0 −20
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0-only
#
# Ramaxel driver configuration
#

config NET_VENDOR_RAMAXEL
	bool "Ramaxel devices"
	default y
	help
	If you have a network (Ethernet) card belonging to this class, say Y.
	Note that the answer to this question doesn't directly affect the
	kernel: saying N will just cause the configurator to skip all
	the questions about Ramaxel cards. If you say Y, you will be asked
	for your specific card in the following questions.

if NET_VENDOR_RAMAXEL

	source "drivers/net/ethernet/ramaxel/spnic/Kconfig"

endif # NET_VENDOR_RAMAXEL
Loading