mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-02 03:44:36 +08:00
4e0396c595
With CONFIG_BRIDGE=m the compilation fails:
ld: drivers/net/ethernet/marvell/prestera/prestera_switchdev.o: in function `prestera_bridge_port_event':
prestera_switchdev.c:(.text+0x2ebd): undefined reference to `br_vlan_enabled'
in case the driver is statically enabled.
Fix it by adding 'BRIDGE || BRIDGE=n' dependency.
Fixes: e1189d9a5f
("net: marvell: prestera: Add Switchdev driver implementation")
Reported-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Vadym Kochan <vadym.kochan@plvision.eu>
Acked-by: Randy Dunlap <rdunlap@infradead.org> # build-tested
Link: https://lore.kernel.org/r/20201106161128.24069-1-vadym.kochan@plvision.eu
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
27 lines
759 B
Plaintext
27 lines
759 B
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# Marvell Prestera drivers configuration
|
|
#
|
|
|
|
config PRESTERA
|
|
tristate "Marvell Prestera Switch ASICs support"
|
|
depends on NET_SWITCHDEV && VLAN_8021Q
|
|
depends on BRIDGE || BRIDGE=n
|
|
select NET_DEVLINK
|
|
help
|
|
This driver supports Marvell Prestera Switch ASICs family.
|
|
|
|
To compile this driver as a module, choose M here: the
|
|
module will be called prestera.
|
|
|
|
config PRESTERA_PCI
|
|
tristate "PCI interface driver for Marvell Prestera Switch ASICs family"
|
|
depends on PCI && HAS_IOMEM && PRESTERA
|
|
default PRESTERA
|
|
help
|
|
This is implementation of PCI interface support for Marvell Prestera
|
|
Switch ASICs family.
|
|
|
|
To compile this driver as a module, choose M here: the
|
|
module will be called prestera_pci.
|