diff options
| author | Tom Rini <[email protected]> | 2023-02-15 22:36:55 -0500 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2023-03-02 15:32:25 -0500 |
| commit | f4ee45e2a0aa5e6bbd7ce17db3a1b0775d72077a (patch) | |
| tree | b69f5f21bfc7cad7ad97255babea78ec05f2adc2 /arch | |
| parent | 1df23b405af37562fa3e810e51ee61db6bd2422d (diff) | |
s5p: Remove empty arch_misc_init
We don't need to provide an empty arch_misc_init function here, we can
just not enable the hook.
Cc: Stefan Bosch <[email protected]>
Signed-off-by: Tom Rini <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
Reviewed-by: Minkyu Kang <[email protected]>
Diffstat (limited to 'arch')
| -rw-r--r-- | arch/arm/cpu/armv7/s5p4418/cpu.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/arch/arm/cpu/armv7/s5p4418/cpu.c b/arch/arm/cpu/armv7/s5p4418/cpu.c index fcaafc0ff76..8febfe52766 100644 --- a/arch/arm/cpu/armv7/s5p4418/cpu.c +++ b/arch/arm/cpu/armv7/s5p4418/cpu.c @@ -84,10 +84,3 @@ void enable_caches(void) /* Enable D-cache. I-cache is already enabled in start.S */ dcache_enable(); } - -#if defined(CONFIG_ARCH_MISC_INIT) -int arch_misc_init(void) -{ - return 0; -} -#endif /* CONFIG_ARCH_MISC_INIT */ |
