Lines Matching refs:str
97 static int __init parse_efi_cmdline(char *str)
99 if (!str) {
104 if (parse_option_str(str, "debug"))
107 if (parse_option_str(str, "noruntime"))
110 if (parse_option_str(str, "runtime"))
113 if (parse_option_str(str, "nosoftreserve"))
131 char *str = buf;
137 str += sprintf(str, "ACPI20=0x%lx\n", efi.acpi20);
139 str += sprintf(str, "ACPI=0x%lx\n", efi.acpi);
146 str += sprintf(str, "SMBIOS3=0x%lx\n", efi.smbios3);
148 str += sprintf(str, "SMBIOS=0x%lx\n", efi.smbios);
151 str = efi_systab_show_arch(str);
153 return str - buf;
237 static int __init efivar_ssdt_setup(char *str)
244 if (strlen(str) < sizeof(efivar_ssdt))
245 memcpy(efivar_ssdt, str, strlen(str));
247 pr_warn("efivar_ssdt: name too long: %s\n", str);