diff options
author | Clément Léger <clement.leger@bootlin.com> | 2023-05-30 11:05:16 +0200 |
---|---|---|
committer | Eugen Hristev <eugen.hristev@collabora.com> | 2023-06-16 12:17:12 +0300 |
commit | ee8f873678cca41df206f23883d6fe6a641a7f21 (patch) | |
tree | 20bfcfa1d7ab0e32cdc6364710d550147b07cee2 /arch/arm/mach-at91 | |
parent | c89982f0895efb4ac4803f69a9ca8de4b9d67101 (diff) | |
download | u-boot-ee8f873678cca41df206f23883d6fe6a641a7f21.tar.gz u-boot-ee8f873678cca41df206f23883d6fe6a641a7f21.tar.bz2 u-boot-ee8f873678cca41df206f23883d6fe6a641a7f21.zip |
ARM: at91: don't initialize clocks if scmi clock driver is enabled
Because clock devices are initialized by the SCMI server, if
CONFIG_CLK_SCMI is defined.
Signed-off-by: Clément Léger <clement.leger@bootlin.com>
Signed-off-by: Thomas Perrot <thomas.perrot@bootlin.com>
Diffstat (limited to 'arch/arm/mach-at91')
-rw-r--r-- | arch/arm/mach-at91/armv7/cpu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-at91/armv7/cpu.c b/arch/arm/mach-at91/armv7/cpu.c index 616621a1f9..5ea7e2609f 100644 --- a/arch/arm/mach-at91/armv7/cpu.c +++ b/arch/arm/mach-at91/armv7/cpu.c @@ -24,7 +24,7 @@ int arch_cpu_init(void) { -#if defined(CONFIG_CLK_CCF) +#if defined(CONFIG_CLK_CCF) || defined(CONFIG_CLK_SCMI) return 0; #else return at91_clock_init(CFG_SYS_AT91_MAIN_CLOCK); |