mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
a45e5fe792
Commit85b9686dae
("MIPS: ath79: drop platform device registration code") removes all files arch/mips/ath79/dev-*.[ch], adjusts the Makefile, but misses to adjust the Kconfig file. Hence, since then, the configs ATH79_DEV_* are really dead. Commit3a77e0d75e
("MIPS: ath79: drop machfiles") already removes all configs that select ATH79_DEV_* config. So at that point, they was not a way to enable them with a kernel build configuration. Remove these obsolete ATH79_DEV_* configs. Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com> Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
33 lines
415 B
Plaintext
33 lines
415 B
Plaintext
# SPDX-License-Identifier: GPL-2.0
|
|
if ATH79
|
|
|
|
config SOC_AR71XX
|
|
select HAVE_PCI
|
|
def_bool n
|
|
|
|
config SOC_AR724X
|
|
select HAVE_PCI
|
|
select PCI_AR724X if PCI
|
|
def_bool n
|
|
|
|
config SOC_AR913X
|
|
def_bool n
|
|
|
|
config SOC_AR933X
|
|
def_bool n
|
|
|
|
config SOC_AR934X
|
|
select HAVE_PCI
|
|
select PCI_AR724X if PCI
|
|
def_bool n
|
|
|
|
config SOC_QCA955X
|
|
select HAVE_PCI
|
|
select PCI_AR724X if PCI
|
|
def_bool n
|
|
|
|
config PCI_AR724X
|
|
def_bool n
|
|
|
|
endif
|