Lines Matching refs:str
516 char *__init pcibios_setup(char *str)
518 if (!strcmp(str, "off")) {
521 } else if (!strcmp(str, "bfsort")) {
524 } else if (!strcmp(str, "nobfsort")) {
529 else if (!strcmp(str, "bios")) {
532 } else if (!strcmp(str, "nobios")) {
535 } else if (!strcmp(str, "biosirq")) {
538 } else if (!strncmp(str, "pirqaddr=", 9)) {
539 pirq_table_addr = simple_strtoul(str+9, NULL, 0);
544 else if (!strcmp(str, "conf1")) {
548 else if (!strcmp(str, "conf2")) {
554 else if (!strcmp(str, "nommconf")) {
558 else if (!strcmp(str, "check_enable_amd_mmconf")) {
563 else if (!strcmp(str, "noacpi")) {
567 else if (!strcmp(str, "noearly")) {
571 else if (!strcmp(str, "usepirqmask")) {
574 } else if (!strncmp(str, "irqmask=", 8)) {
575 pcibios_irq_mask = simple_strtol(str+8, NULL, 0);
577 } else if (!strncmp(str, "lastbus=", 8)) {
578 pcibios_last_bus = simple_strtol(str+8, NULL, 0);
580 } else if (!strcmp(str, "rom")) {
583 } else if (!strcmp(str, "norom")) {
586 } else if (!strcmp(str, "nobar")) {
589 } else if (!strcmp(str, "assign-busses")) {
592 } else if (!strcmp(str, "use_crs")) {
595 } else if (!strcmp(str, "nocrs")) {
598 } else if (!strcmp(str, "use_e820")) {
602 } else if (!strcmp(str, "no_e820")) {
607 } else if (!strcmp(str, "big_root_window")) {
611 } else if (!strcmp(str, "routeirq")) {
614 } else if (!strcmp(str, "skip_isa_align")) {
617 } else if (!strcmp(str, "noioapicquirk")) {
620 } else if (!strcmp(str, "ioapicreroute")) {
624 } else if (!strcmp(str, "noioapicreroute")) {
629 return str;