diff options
author | Tom Rini <trini@konsulko.com> | 2023-02-15 22:36:53 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-03-02 15:32:25 -0500 |
commit | f47c765dbe7b0813d32f797669db771ffa55b9a2 (patch) | |
tree | f9c2c415a1525db27f46e202df95fcd5031345cb /arch/arm/mach-mvebu | |
parent | cfc4c0c2f3aab8dd56fb7206da8311e2ba5a1244 (diff) | |
download | u-boot-f47c765dbe7b0813d32f797669db771ffa55b9a2.tar.gz |
mvebe: Drop ARCH_MISC_INIT from alleycat 5
In this platform, arch_misc_init doesn't perform any real function. The
call to get_soc_type_rev has no lasting side effects.
Cc: Chris Packham <chris.packham@alliedtelesis.co.nz>
Signed-off-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Chris Packham <chris.packham@alliedtelesis.co.nz>
Diffstat (limited to 'arch/arm/mach-mvebu')
-rw-r--r-- | arch/arm/mach-mvebu/alleycat5/soc.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/arch/arm/mach-mvebu/alleycat5/soc.c b/arch/arm/mach-mvebu/alleycat5/soc.c index efbef233a14..dc69f46eedb 100644 --- a/arch/arm/mach-mvebu/alleycat5/soc.c +++ b/arch/arm/mach-mvebu/alleycat5/soc.c @@ -287,12 +287,3 @@ int mach_cpu_init(void) return 0; } - -int arch_misc_init(void) -{ - u32 type, rev; - - get_soc_type_rev(&type, &rev); - - return 0; -} |