mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-26 17:01:14 +00:00
29 lines
962 B
Diff
29 lines
962 B
Diff
|
From d83b51f60997365b80637f71924ab3dec91d5b77 Mon Sep 17 00:00:00 2001
|
||
|
From: Changhuang Liang <changhuang.liang@starfivetech.com>
|
||
|
Date: Thu, 18 May 2023 23:02:00 -0700
|
||
|
Subject: [PATCH 071/122] soc: starfive: Replace SOC_STARFIVE with
|
||
|
ARCH_STARFIVE
|
||
|
|
||
|
Using ARCH_FOO symbol is preferred than SOC_FOO.
|
||
|
|
||
|
Reviewed-by: Conor Dooley <conor.dooley@microchip.com>
|
||
|
Reviewed-by: Walker Chen <walker.chen@starfivetech.com>
|
||
|
Signed-off-by: Changhuang Liang <changhuang.liang@starfivetech.com>
|
||
|
---
|
||
|
drivers/soc/starfive/Kconfig | 4 ++--
|
||
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
||
|
|
||
|
--- a/drivers/soc/starfive/Kconfig
|
||
|
+++ b/drivers/soc/starfive/Kconfig
|
||
|
@@ -3,8 +3,8 @@
|
||
|
config JH71XX_PMU
|
||
|
bool "Support PMU for StarFive JH71XX Soc"
|
||
|
depends on PM
|
||
|
- depends on SOC_STARFIVE || COMPILE_TEST
|
||
|
- default SOC_STARFIVE
|
||
|
+ depends on ARCH_STARFIVE || COMPILE_TEST
|
||
|
+ default ARCH_STARFIVE
|
||
|
select PM_GENERIC_DOMAINS
|
||
|
help
|
||
|
Say 'y' here to enable support power domain support.
|