mirror of
https://github.com/torvalds/linux.git
synced 2026-09-24 06:24:02 +02:00
power: sequencing: Fix build issue with COMPILE_TEST
The POWER_SEQUENCING_TH1520_GPU driver depends on
(ARCH_THEAD && AUXILIARY_BUS) || COMPILE_TEST. This means when
COMPILE_TEST=y and ARCH_THEAD is not set, the driver can still be
built even though it requires AUXILIARY_BUS, which may not be
selected in that configuration, leading to a build failure.
Fix this by dropping AUXILIARY_BUS from the dependency and instead
selecting it directly, so the dependency is satisfied regardless of
whether COMPILE_TEST or ARCH_THEAD is enabled.
Fixes: 1a7312b93a ("power: sequencing: extend build coverage with COMPILE_TEST=y")
Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
Link: https://patch.msgid.link/20260826122742.153643-3-biju.das.jz@bp.renesas.com
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@oss.qualcomm.com>
This commit is contained in:
parent
cee9395acd
commit
3b54dbd119
|
|
@ -29,7 +29,8 @@ config POWER_SEQUENCING_QCOM_WCN
|
|||
|
||||
config POWER_SEQUENCING_TH1520_GPU
|
||||
tristate "T-HEAD TH1520 GPU power sequencing driver"
|
||||
depends on (ARCH_THEAD && AUXILIARY_BUS) || COMPILE_TEST
|
||||
depends on ARCH_THEAD || COMPILE_TEST
|
||||
select AUXILIARY_BUS
|
||||
help
|
||||
Say Y here to enable the power sequencing driver for the TH1520 SoC
|
||||
GPU. This driver handles the complex clock and reset sequence
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user