Skip to content

Commit

Permalink
[POWERPC] Only call ppc_md.setup_arch() if it is provided
Browse files Browse the repository at this point in the history
This allows platforms which don't have anything to do at setup_arch time
(like a bunch of the 4xx platforms) to eliminate an empty setup_arch hook.

Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Signed-off-by: Paul Mackerras <paulus@samba.org>
  • Loading branch information
Grant Likely authored and Paul Mackerras committed Oct 11, 2007
1 parent dc9b43d commit 38db7e7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion arch/powerpc/kernel/setup_32.c
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,8 @@ void __init setup_arch(char **cmdline_p)
conswitchp = &dummy_con;
#endif

ppc_md.setup_arch();
if (ppc_md.setup_arch)
ppc_md.setup_arch();
if ( ppc_md.progress ) ppc_md.progress("arch: exit", 0x3eab);

paging_init();
Expand Down
3 changes: 2 additions & 1 deletion arch/powerpc/kernel/setup_64.c
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,8 @@ void __init setup_arch(char **cmdline_p)
conswitchp = &dummy_con;
#endif

ppc_md.setup_arch();
if (ppc_md.setup_arch)
ppc_md.setup_arch();

paging_init();
ppc64_boot_msg(0x15, "Setup Done");
Expand Down
2 changes: 1 addition & 1 deletion include/asm-powerpc/machdep.h
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ struct machdep_calls {
#endif /* CONFIG_PPC64 */

int (*probe)(void);
void (*setup_arch)(void);
void (*setup_arch)(void); /* Optional, may be NULL */
void (*init_early)(void);
/* Optional, may be NULL. */
void (*show_cpuinfo)(struct seq_file *m);
Expand Down

0 comments on commit 38db7e7

Please sign in to comment.