diff options
author | Loic Poulain <loic.poulain@linaro.org> | 2021-06-14 18:56:36 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-06-14 22:17:10 +0200 |
commit | 89212e160b81e778f829b89743570665810e3b13 (patch) | |
tree | 7a4641d1559eaa9b32b7f6e5c6e2c9a0dab989ae /drivers/net/Kconfig | |
parent | net: flow_dissector: fix RPS on DSA masters (diff) | |
download | linux-89212e160b81e778f829b89743570665810e3b13.tar.xz linux-89212e160b81e778f829b89743570665810e3b13.zip |
net: wwan: Fix WWAN config symbols
There is not strong reason to have both WWAN and WWAN_CORE symbols,
Let's build the WWAN core framework when WWAN is selected, in the
same way as for other subsystems.
This fixes issue with mhi_net selecting WWAN_CORE without WWAN and
reported by kernel test robot:
Kconfig warnings: (for reference only)
WARNING: unmet direct dependencies detected for WWAN_CORE
Depends on NETDEVICES && WWAN
Selected by
- MHI_NET && NETDEVICES && NET_CORE && MHI_BUS
Fixes: 9a44c1cc6388 ("net: Add a WWAN subsystem")
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Loic Poulain <loic.poulain@linaro.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/Kconfig')
-rw-r--r-- | drivers/net/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/Kconfig b/drivers/net/Kconfig index 30d6e2f7686e..6977f8248df7 100644 --- a/drivers/net/Kconfig +++ b/drivers/net/Kconfig @@ -431,7 +431,7 @@ config VSOCKMON config MHI_NET tristate "MHI network driver" depends on MHI_BUS - select WWAN_CORE + select WWAN help This is the network driver for MHI bus. It can be used with QCOM based WWAN modems (like SDX55). Say Y or M. |