diff options
Diffstat (limited to 'arch/ppc/kernel/setup.c')
-rw-r--r-- | arch/ppc/kernel/setup.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/arch/ppc/kernel/setup.c b/arch/ppc/kernel/setup.c index 929e5d1cc7fe..cf74a744e375 100644 --- a/arch/ppc/kernel/setup.c +++ b/arch/ppc/kernel/setup.c | |||
@@ -615,6 +615,30 @@ machine_init(unsigned long r3, unsigned long r4, unsigned long r5, | |||
615 | if (ppc_md.progress) | 615 | if (ppc_md.progress) |
616 | ppc_md.progress("id mach(): done", 0x200); | 616 | ppc_md.progress("id mach(): done", 0x200); |
617 | } | 617 | } |
618 | #ifdef CONFIG_BOOKE_WDT | ||
619 | /* Checks wdt=x and wdt_period=xx command-line option */ | ||
620 | int __init early_parse_wdt(char *p) | ||
621 | { | ||
622 | extern u32 wdt_enable; | ||
623 | |||
624 | if (p && strncmp(p, "0", 1) != 0) | ||
625 | wdt_enable = 1; | ||
626 | |||
627 | return 0; | ||
628 | } | ||
629 | early_param("wdt", early_parse_wdt); | ||
630 | |||
631 | int __init early_parse_wdt_period (char *p) | ||
632 | { | ||
633 | extern u32 wdt_period; | ||
634 | |||
635 | if (p) | ||
636 | wdt_period = simple_strtoul(p, NULL, 0); | ||
637 | |||
638 | return 0; | ||
639 | } | ||
640 | early_param("wdt_period", early_parse_wdt_period); | ||
641 | #endif /* CONFIG_BOOKE_WDT */ | ||
618 | 642 | ||
619 | /* Checks "l2cr=xxxx" command-line option */ | 643 | /* Checks "l2cr=xxxx" command-line option */ |
620 | int __init ppc_setup_l2cr(char *str) | 644 | int __init ppc_setup_l2cr(char *str) |