diff options
author | Thomas Bogendoerfer <tsbogend@alpha.franken.de> | 2020-10-05 13:28:45 +0200 |
---|---|---|
committer | Thomas Bogendoerfer <tsbogend@alpha.franken.de> | 2020-10-06 12:33:57 +0200 |
commit | 026ba130a5e8861259d12fb9ae352e9ce408955d (patch) | |
tree | 31f802aec9fedaefebc9ed9802525658c5e943ce /arch/mips/alchemy/board-mtx1.c | |
parent | MIPS: alchemy: Fix build breakage, if TOUCHSCREEN_WM97XX is disabled (diff) | |
download | linux-026ba130a5e8861259d12fb9ae352e9ce408955d.tar.xz linux-026ba130a5e8861259d12fb9ae352e9ce408955d.zip |
MIPS: alchemy: Share prom_init implementation
All boards have the same prom_init() function. Move it to common code and
delete the duplicates.
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Diffstat (limited to 'arch/mips/alchemy/board-mtx1.c')
-rw-r--r-- | arch/mips/alchemy/board-mtx1.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/arch/mips/alchemy/board-mtx1.c b/arch/mips/alchemy/board-mtx1.c index 23093535399f..68ea57511629 100644 --- a/arch/mips/alchemy/board-mtx1.c +++ b/arch/mips/alchemy/board-mtx1.c @@ -30,23 +30,6 @@ const char *get_system_type(void) return "MTX-1"; } -void __init prom_init(void) -{ - unsigned char *memsize_str; - unsigned long memsize; - - prom_argc = fw_arg0; - prom_argv = (char **)fw_arg1; - prom_envp = (char **)fw_arg2; - - prom_init_cmdline(); - - memsize_str = prom_getenv("memsize"); - if (!memsize_str || kstrtoul(memsize_str, 0, &memsize)) - memsize = 0x04000000; - add_memory_region(0, memsize, BOOT_MEM_RAM); -} - void prom_putchar(char c) { alchemy_uart_putchar(AU1000_UART0_PHYS_ADDR, c); |