Lines Matching refs:str
524 static int __init reboot_setup(char *str) in reboot_setup() argument
536 if (!strncmp(str, "panic_", 6)) { in reboot_setup()
538 str += 6; in reboot_setup()
543 switch (*str) { in reboot_setup()
557 if (isdigit(*(str+1))) in reboot_setup()
558 reboot_cpu = simple_strtoul(str+1, NULL, 0); in reboot_setup()
559 else if (str[1] == 'm' && str[2] == 'p' && in reboot_setup()
560 isdigit(*(str+3))) in reboot_setup()
561 reboot_cpu = simple_strtoul(str+3, NULL, 0); in reboot_setup()
583 reboot_type = *str; in reboot_setup()
591 str = strchr(str, ','); in reboot_setup()
592 if (str) in reboot_setup()
593 str++; in reboot_setup()