mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-28 14:44:10 +08:00
44fc1060a6
drivers/platform/x86/Kconfig is wrapped in one big if X86_PLATFORM_DEVICES .. endif and X86_PLATFORM_DEVICES already has a "depends on X86" so the "if X86" in drivers/platform/Kconfig is not necessary and except for MIPS none of the other includes there has such an if. So let's remove it. While at it also move the x86/Kconfig include to the end of the file for alphabetical sorting. Signed-off-by: Hans de Goede <hdegoede@redhat.com> Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com> Link: https://lore.kernel.org/r/20220620145628.5882-2-hdegoede@redhat.com
17 lines
345 B
Plaintext
17 lines
345 B
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
if MIPS
|
|
source "drivers/platform/mips/Kconfig"
|
|
endif
|
|
|
|
source "drivers/platform/goldfish/Kconfig"
|
|
|
|
source "drivers/platform/chrome/Kconfig"
|
|
|
|
source "drivers/platform/mellanox/Kconfig"
|
|
|
|
source "drivers/platform/olpc/Kconfig"
|
|
|
|
source "drivers/platform/surface/Kconfig"
|
|
|
|
source "drivers/platform/x86/Kconfig"
|