mirror of
https://github.com/torvalds/linux.git
synced 2024-12-11 13:41:55 +00:00
ae9884829c
The "select" kconfig keyword provides reverse dependency, however it doesn't check that selected symbol meets its own dependencies. Usually "select" is used for non-visible symbols, so instead of trying to keep dependencies in sync with BNXT ethernet driver, simply "depends on" it, like Kconfig documentation suggest. * CONFIG_PCI is already required by BNXT * CONFIG_NETDEVICES and CONFIG_ETHERNET are needed to chose BNXT Link: https://lore.kernel.org/r/20210401065715.565226-2-leon@kernel.org Signed-off-by: Leon Romanovsky <leonro@nvidia.com> Acked-By: Devesh Sharma <devesh.sharma@broadcom.com> Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
10 lines
334 B
Plaintext
10 lines
334 B
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
config INFINIBAND_BNXT_RE
|
|
tristate "Broadcom Netxtreme HCA support"
|
|
depends on 64BIT
|
|
depends on INET && DCB && BNXT
|
|
help
|
|
This driver supports Broadcom NetXtreme-E 10/25/40/50 gigabit
|
|
RoCE HCAs. To compile this driver as a module, choose M here:
|
|
the module will be called bnxt_re.
|