Commit 77116849 authored by Kumar Gala's avatar Kumar Gala Committed by Paul Mackerras

[POWERPC] Remove unused machine call outs

When we moved to arch/powerpc we actively tried to avoid using the
ppc_md.setup_io_mappings().  Currently no board ports use it so let's
remove it to avoid any new boards using it.

Also, remove early_serial_map() since we don't even have a call out for
it in arch/powerpc.
Signed-off-by: default avatarKumar Gala <galak@kernel.crashing.org>
Signed-off-by: default avatarPaul Mackerras <paulus@samba.org>
parent 5faae2e5
...@@ -185,8 +185,6 @@ void __init MMU_init(void) ...@@ -185,8 +185,6 @@ void __init MMU_init(void)
/* Map in I/O resources */ /* Map in I/O resources */
if (ppc_md.progress) if (ppc_md.progress)
ppc_md.progress("MMU:setio", 0x302); ppc_md.progress("MMU:setio", 0x302);
if (ppc_md.setup_io_mappings)
ppc_md.setup_io_mappings();
/* Initialize the context management stuff */ /* Initialize the context management stuff */
mmu_context_init(); mmu_context_init();
......
...@@ -198,9 +198,6 @@ struct machdep_calls { ...@@ -198,9 +198,6 @@ struct machdep_calls {
May be NULL. */ May be NULL. */
void (*init)(void); void (*init)(void);
void (*setup_io_mappings)(void);
void (*early_serial_map)(void);
void (*kgdb_map_scc)(void); void (*kgdb_map_scc)(void);
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment