mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-12 21:46:47 +07:00
d3829c1b84
The newly added code for the SoC bus fails to link if the
bus is not built:
drivers/soc/built-in.o: In function `brcmstb_soc_device_init':
:(.init.text+0x110): undefined reference to `soc_device_register'
This adds a 'select' statement to avoid the error.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Fixes: cef4bafcea
("soc: brcmstb: add SoC driver to brcmstb")
Acked-by: Florian Fainelli <f.fainelli@gmail.com>
11 lines
307 B
Plaintext
11 lines
307 B
Plaintext
menuconfig SOC_BRCMSTB
|
|
bool "Broadcom STB SoC drivers"
|
|
depends on ARM
|
|
select SOC_BUS
|
|
help
|
|
Enables drivers for the Broadcom Set-Top Box (STB) series of chips.
|
|
This option alone enables only some support code, while the drivers
|
|
can be enabled individually within this menu.
|
|
|
|
If unsure, say N.
|