lib: acpi: update DSDT Kconfig with condition enable

update DSDT_SUPPORT Kconfig with condition enable only if both
ACPI and PCI enabled

Signed-off-by: Najumon B.A <najumon.ba@intel.com>
This commit is contained in:
Najumon B.A 2023-10-04 18:24:07 +05:30 committed by Carles Cufí
parent bec3b09f38
commit b86b4b96a1

View file

@ -1,10 +1,12 @@
# Copyright (c) 2023 Intel Corporation.
# SPDX-License-Identifier: Apache-2.0
menu "ACPI driver support"
config ACPI
bool
menu "ACPI driver support"
if ACPI
config ACPI_DSDT_SUPPORT
bool "Build source code for DSDT ACPICA support"
@ -12,4 +14,6 @@ config ACPI_DSDT_SUPPORT
help
Build source code for DSDT support
endif #ACPI
endmenu