Lines Matching refs:str
491 static int __init reboot_setup(char *str) in reboot_setup() argument
501 switch (*str) { in reboot_setup()
518 if (isdigit(*(str+1))) { in reboot_setup()
519 rc = kstrtoint(str+1, 0, &reboot_cpu); in reboot_setup()
522 } else if (str[1] == 'm' && str[2] == 'p' && in reboot_setup()
523 isdigit(*(str+3))) { in reboot_setup()
524 rc = kstrtoint(str+3, 0, &reboot_cpu); in reboot_setup()
541 reboot_type = *str; in reboot_setup()
549 str = strchr(str, ','); in reboot_setup()
550 if (str) in reboot_setup()
551 str++; in reboot_setup()