diff options
author | Huisong Li <lihuisong@huawei.com> | 2024-04-17 17:48:01 +0800 |
---|---|---|
committer | Wei Xu <xuwei5@hisilicon.com> | 2024-04-25 02:09:46 +0000 |
commit | 95d6333e0622dd5ca32c7832a015ae24f56d1ad2 (patch) | |
tree | c5dcfa66fabb88c7c04a2d9722f85d56a204a5f3 /drivers/soc | |
parent | 192f97fe164dd946d0da54bf6e17ff6f9ab9ba43 (diff) |
soc: hisilicon: kunpeng_hccs: replace MAILBOX dependency with PCC
The kunpeng_hccs driver depends on the Platform Communication Channel
Driver. If the PCC driver is not enabled, this driver will be failed
to probe. And since the PCC driver depends on the MAILBOX, replace
the MAILBOX dependency with the PCC.
Signed-off-by: Huisong Li <lihuisong@huawei.com>
Signed-off-by: Wei Xu <xuwei5@hisilicon.com>
Diffstat (limited to 'drivers/soc')
-rw-r--r-- | drivers/soc/hisilicon/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/soc/hisilicon/Kconfig b/drivers/soc/hisilicon/Kconfig index 0ab688af308f..4b0a099b28cc 100644 --- a/drivers/soc/hisilicon/Kconfig +++ b/drivers/soc/hisilicon/Kconfig @@ -6,7 +6,7 @@ menu "Hisilicon SoC drivers" config KUNPENG_HCCS tristate "HCCS driver on Kunpeng SoC" depends on ACPI - depends on MAILBOX + depends on PCC depends on ARM64 || COMPILE_TEST help The Huawei Cache Coherence System (HCCS) is a multi-chip |