| /linux/scripts/ |
| H A D | config | 19 --enable|-e option Enable option 20 --disable|-d option Disable option 21 --module|-m option Turn option into a module 22 --set-str option string 23 Set option to "string" 24 --set-val option value 25 Set option t [all...] |
| H A D | Makefile.compiler | 34 as-option = $(call try-run,\ 45 __cc-option = $(call try-run,\ 51 cc-option = $(call __cc-option, $(CC),\ 56 cc-option-yn = $(if $(call cc-option,$1),y,n) 60 cc-disable-warning = $(call cc-option,-Wno-$(strip $1)) 76 ld-option = $(call try-run, $(LD) $(KBUILD_LDFLAGS) $(1) -v,$(1),$(2),$(3)) 81 __rustc-option = $(call try-run,\ 88 rustc-option = $(call __rustc-option, $(RUSTC),\ 93 rustc-option-yn = $(if $(call rustc-option,$1),y,n)
|
| H A D | Makefile.warn | 20 KBUILD_CFLAGS += $(call cc-option, -Wno-address-of-packed-member) 33 KBUILD_CFLAGS += $(call cc-option, -Wno-format-overflow-non-kprintf) 34 KBUILD_CFLAGS += $(call cc-option, -Wno-format-truncation-non-kprintf) 46 KBUILD_CFLAGS += $(call cc-option, -Wno-default-const-init-unsafe) 57 KBUILD_CFLAGS += $(call cc-option, -Wno-dangling-pointer) 65 KBUILD_CFLAGS += $(call cc-option,-Wvla-larger-than=1) 76 KBUILD_CFLAGS-$(CONFIG_CC_NO_STRINGOP_OVERFLOW) += $(call cc-option, -Wno-stringop-overflow) 77 KBUILD_CFLAGS-$(CONFIG_CC_STRINGOP_OVERFLOW) += $(call cc-option, -Wstringop-overflow) 80 KBUILD_CFLAGS += $(call cc-option, -Wno-unterminated-string-initialization) 85 # of gcc (<9.1) weirdly don't handle the option correctl [all...] |
| /linux/drivers/firmware/efi/libstub/ |
| H A D | gop.c | 28 enum efi_cmdline_option option; member 37 } cmdline = { .option = EFI_CMDLINE_NONE }; 39 static bool parse_modenum(char *option, char **next) in parse_modenum() argument 43 if (!strstarts(option, "mode=")) in parse_modenum() 45 option += strlen("mode="); in parse_modenum() 46 m = simple_strtoull(option, &option, 0); in parse_modenum() 47 if (*option && *option++ != ',') in parse_modenum() 49 cmdline.option = EFI_CMDLINE_MODE_NUM; in parse_modenum() 52 *next = option; in parse_modenum() 56 static bool parse_res(char *option, char **next) in parse_res() argument [all …]
|
| /linux/drivers/pnp/ |
| H A D | quirks.c | 27 struct pnp_option *option, in quirk_awe32_add_ports() argument 35 "%d\n", pnp_option_set(option)); in quirk_awe32_add_ports() 39 *new_option = *option; in quirk_awe32_add_ports() 42 list_add(&new_option->list, &option->list); in quirk_awe32_add_ports() 47 pnp_option_set(option)); in quirk_awe32_add_ports() 52 struct pnp_option *option; in quirk_awe32_resources() local 59 list_for_each_entry(option, &dev->options, list) { in quirk_awe32_resources() 60 if (pnp_option_is_dependent(option) && in quirk_awe32_resources() 61 pnp_option_set(option) != set) { in quirk_awe32_resources() 62 set = pnp_option_set(option); in quirk_awe32_resources() [all …]
|
| H A D | resource.c | 39 struct pnp_option *option; in pnp_build_option() local 41 option = kzalloc_obj(struct pnp_option); in pnp_build_option() 42 if (!option) in pnp_build_option() 45 option->flags = option_flags; in pnp_build_option() 46 option->type = type; in pnp_build_option() 48 list_add_tail(&option->list, &dev->options); in pnp_build_option() 49 return option; in pnp_build_option() 55 struct pnp_option *option; in pnp_register_irq_resource() local 58 option = pnp_build_option(dev, IORESOURCE_IRQ, option_flags); in pnp_register_irq_resource() 59 if (!option) in pnp_register_irq_resource() [all …]
|
| /linux/arch/m68k/ |
| H A D | Makefile | 41 cpuflags-$(CONFIG_M5441x) = $(call cc-option,-mcpu=54455,-mcfv4e) 42 cpuflags-$(CONFIG_M54xx) = $(call cc-option,-mcpu=5475,-m5200) 43 cpuflags-$(CONFIG_M5407) = $(call cc-option,-mcpu=5407,-m5200) 44 cpuflags-$(CONFIG_M532x) = $(call cc-option,-mcpu=532x,-m5307) 45 cpuflags-$(CONFIG_M537x) = $(call cc-option,-mcpu=537x,-m5307) 46 cpuflags-$(CONFIG_M5307) = $(call cc-option,-mcpu=5307,-m5200) 47 cpuflags-$(CONFIG_M528x) = $(call cc-option,-mcpu=528x,-m5307) 48 cpuflags-$(CONFIG_M5275) = $(call cc-option,-mcpu=5275,-m5307) 49 cpuflags-$(CONFIG_M5272) = $(call cc-option,-mcpu=5272,-m5307) 50 cpuflags-$(CONFIG_M5271) = $(call cc-option,-mcpu=5271,-m5307) [all …]
|
| /linux/tools/perf/trace/beauty/ |
| H A D | prctl.c | 16 static size_t prctl__scnprintf_option(int option, char *bf, size_t size, bool show_prefix) in prctl__scnprintf_option() argument 18 return strarray__scnprintf(&strarray__prctl_options, bf, size, "%d", show_prefix, option); in prctl__scnprintf_option() 21 static size_t prctl__scnprintf_set_mm(int option, char *bf, size_t size, bool show_prefix) in prctl__scnprintf_set_mm() argument 24 return strarray__scnprintf(&strarray__prctl_set_mm_options, bf, size, "%d", show_prefix, option); in prctl__scnprintf_set_mm() 29 int option = syscall_arg__val(arg, 0); in syscall_arg__scnprintf_prctl_arg2() local 31 if (option == PR_SET_MM) in syscall_arg__scnprintf_prctl_arg2() 37 if (option == PR_SET_NAME) in syscall_arg__scnprintf_prctl_arg2() 45 int option = syscall_arg__val(arg, 0); in syscall_arg__scnprintf_prctl_arg3() local 47 if (option == PR_SET_MM) in syscall_arg__scnprintf_prctl_arg3() 55 unsigned long option in syscall_arg__scnprintf_prctl_option() local [all...] |
| /linux/tools/include/linux/ |
| H A D | kconfig.h | 44 #define IS_BUILTIN(option) __is_defined(option) argument 50 #define IS_MODULE(option) __is_defined(option##_MODULE) argument 58 #define IS_REACHABLE(option) __or(IS_BUILTIN(option), \ argument 59 __and(IS_MODULE(option), __is_defined(MODULE))) 65 #define IS_ENABLED(option) __or(IS_BUILTIN(option), IS_MODULE(option)) argument
|
| /linux/include/linux/ |
| H A D | kconfig.h | 50 #define IS_BUILTIN(option) __is_defined(option) argument 57 #define IS_MODULE(option) __is_defined(option##_MODULE) argument 65 #define IS_REACHABLE(option) __or(IS_BUILTIN(option), \ argument 66 __and(IS_MODULE(option), __is_defined(MODULE))) 73 #define IS_ENABLED(option) __or(IS_BUILTIN(option), IS_MODULE(option)) argument
|
| /linux/drivers/misc/cardreader/ |
| H A D | rts5260.c | 178 struct rtsx_cr_option *option = &pcr->option; in rts5260_card_power_on() local 180 if (option->ocp_en) in rts5260_card_power_on() 274 if (pcr->option.ocp_en) in rts5260_card_power_off() 282 struct rtsx_cr_option *option = &pcr->option; in rts5260_init_ocp() local 284 if (option->ocp_en) { in rts5260_init_ocp() 290 option->sd_800mA_ocp_thd); in rts5260_init_ocp() 362 if (!pcr->option.ocp_en) in rts5260_process_ocp() 483 struct rtsx_cr_option *option = &pcr->option; in rts5260_init_from_cfg() local 487 if (option->ltr_en) { in rts5260_init_from_cfg() 488 if (option->ltr_enabled) in rts5260_init_from_cfg() [all …]
|
| H A D | rts5261.c | 158 struct rtsx_cr_option *option = &pcr->option; in rts5261_card_power_on() local 160 if (option->ocp_en) in rts5261_card_power_on() 294 if (pcr->option.ocp_en) in rts5261_card_power_off() 302 struct rtsx_cr_option *option = &pcr->option; in rts5261_init_ocp() local 304 if (option->ocp_en) { in rts5261_init_ocp() 312 RTS5261_LDO1_OCP_THD_MASK, option->sd_800mA_ocp_thd); in rts5261_init_ocp() 346 if (!pcr->option.ocp_en) in rts5261_process_ocp() 457 struct rtsx_cr_option *option = &pcr->option; in rts5261_init_from_cfg() local 459 if (option->ltr_en) { in rts5261_init_from_cfg() 460 if (option->ltr_enabled) in rts5261_init_from_cfg() [all …]
|
| /linux/arch/x86/lib/ |
| H A D | cmdline.c | 33 const char *option) in __cmdline_find_option_bool() argument 63 opptr = option; in __cmdline_find_option_bool() 126 const char *option, char *buffer, int bufsize) in __cmdline_find_option() argument 157 opptr = option; in __cmdline_find_option() 208 int cmdline_find_option_bool(const char *cmdline, const char *option) in cmdline_find_option_bool() argument 212 ret = __cmdline_find_option_bool(cmdline, COMMAND_LINE_SIZE, option); in cmdline_find_option_bool() 217 return __cmdline_find_option_bool(builtin_cmdline, COMMAND_LINE_SIZE, option); in cmdline_find_option_bool() 222 int cmdline_find_option(const char *cmdline, const char *option, char *buffer, in cmdline_find_option() argument 227 ret = __cmdline_find_option(cmdline, COMMAND_LINE_SIZE, option, buffer, bufsize); in cmdline_find_option() 232 return __cmdline_find_option(builtin_cmdline, COMMAND_LINE_SIZE, option, buffer, bufsize); in cmdline_find_option()
|
| /linux/tools/perf/Documentation/ |
| H A D | intel-bts.txt | 17 recording must also be stipulated i.e. the --per-thread option for 28 option is: 32 Currently Intel BTS is limited to per-thread tracing so the --per-thread option 36 snapshot option 39 The snapshot option is the same as Intel PT (refer Intel PT documentation). 42 auxtrace mmap size option 45 The mmap size option is the same as Intel PT (refer Intel PT documentation). 52 This can be further controlled by option --itrace. The --itrace option is 57 To disable trace decoding entirely, use the option --no-itrace. 60 dump option [all …]
|
| /linux/sound/soc/sof/ |
| H A D | Kconfig | 19 This adds support for PCI enumeration. This option is 23 Say Y if you need this option. 30 This adds support for ACPI enumeration. This option is required 34 Say Y if you need this option. 44 This adds support for Device Tree enumeration. This option is 46 Say Y if you need this option. If unsure select "N". 60 This option enables the data probing feature that can be used to 62 This option is not user-selectable but automagically handled by 69 This option is not user-selectable but automagically handled by 76 This option unlocks SOF developer options for debug/performance/ [all …]
|
| /linux/arch/openrisc/ |
| H A D | Makefile | 31 KBUILD_CFLAGS += $(call cc-option,-mhard-mul) 33 KBUILD_CFLAGS += $(call cc-option,-msoft-mul) 37 KBUILD_CFLAGS += $(call cc-option,-mhard-div) 39 KBUILD_CFLAGS += $(call cc-option,-msoft-div) 43 KBUILD_CFLAGS += $(call cc-option,-mcmov) 47 KBUILD_CFLAGS += $(call cc-option,-mror) 51 KBUILD_CFLAGS += $(call cc-option,-mrori) 55 KBUILD_CFLAGS += $(call cc-option,-msext)
|
| /linux/tools/bpf/ |
| H A D | bpf_exp.l | 36 %option align 37 %option ecs 39 %option nounput 40 %option noreject 41 %option noinput 42 %option noyywrap 44 %option 8bit 45 %option caseless 46 %option yylineno
|
| /linux/scripts/kconfig/tests/transitional/ |
| H A D | Kconfig | 12 bool "New bool option" 20 tristate "New tristate option" 28 string "New string option" 36 hex "New hex option" 44 int "New int option" 53 bool "New bool option with precedence" 61 string "New string option with precedence" 69 tristate "New tristate option with precedence" 77 hex "New hex option with precedence" 85 int "New int option with precedence" [all …]
|
| /linux/drivers/ata/pata_parport/ |
| H A D | Kconfig | 10 This option enables support for the ATEN EH-100 parallel port IDE 18 This option enables support for the Micro Solutions BACKPACK 24 bottom, enable this option. 30 This option enables support for the Micro Solutions BACKPACK 37 bottom, enable this option. 43 This option enables support for the Commuter parallel port IDE 50 This option enables support for the EP-2000 parallel port IDE 57 This option enables support for the TD-2000 parallel port IDE 65 This option enables support for the TD-3000 parallel port IDE 74 This option enables support for the EPAT parallel port IDE protocol. [all …]
|
| /linux/tools/testing/selftests/powerpc/dexcr/ |
| H A D | chdexcr.c | 54 static int apply_option(const char *option) in apply_option() argument 63 if (!strcmp(option, "-h") || !strcmp(option, "--help")) { in apply_option() 69 if (!strncmp(option, clear_prefix, strlen(clear_prefix))) { in apply_option() 70 opt = &option[strlen(clear_prefix)]; in apply_option() 72 } else if (!strncmp(option, set_prefix, strlen(set_prefix))) { in apply_option() 73 opt = &option[strlen(set_prefix)]; in apply_option()
|
| /linux/samples/rust/ |
| H A D | Kconfig | 17 This option builds the Rust configfs sample. 27 This option builds the Rust minimal module sample. 37 This option builds the Rust misc device. 47 This option builds the Rust printing macros sample. 58 This option builds the Rust DMA Test driver sample. 69 This option builds the Rust DebugFS Test module sample. 80 This option builds the Rust Scoped DebugFS Test module sample. 91 This option builds the Rust I2C driver sample. 102 This option builds the Rust I2C client manual creation 114 This option build [all...] |
| /linux/arch/riscv/kernel/ |
| H A D | vec-copy-unaligned.S | 24 .option push 25 .option arch, +zve32x 35 .option pop 46 .option push 47 .option arch, +zve32x 57 .option pop
|
| /linux/arch/powerpc/platforms/powernv/ |
| H A D | eeh-powernv.c | 453 static int pnv_eeh_set_option(struct eeh_pe *pe, int option) in pnv_eeh_set_option() argument 461 switch (option) { in pnv_eeh_set_option() 477 pr_warn("%s: Invalid option %d\n", __func__, option); in pnv_eeh_set_option() 506 __func__, rc, option, phb->hose->global_number, in pnv_eeh_set_option() 719 int pnv_eeh_phb_reset(struct pci_controller *hose, int option) in pnv_eeh_phb_reset() argument 725 __func__, hose->global_number, option); in pnv_eeh_phb_reset() 728 if (option == EEH_RESET_FUNDAMENTAL || in pnv_eeh_phb_reset() 729 option == EEH_RESET_HOT) in pnv_eeh_phb_reset() 733 else if (option == EEH_RESET_DEACTIVATE) in pnv_eeh_phb_reset() 748 if (option == EEH_RESET_DEACTIVATE) { in pnv_eeh_phb_reset() [all …]
|
| /linux/drivers/net/wireless/realtek/rtw88/ |
| H A D | Kconfig | 67 Select this option will enable support for 8822BE chipset 78 Select this option will enable support for 8822BS chipset 89 Select this option will enable support for 8822BU chipset 100 Select this option will enable support for 8822CE chipset 111 Select this option will enable support for 8822CS chipset 122 Select this option will enable support for 8822CU chipset 133 Select this option will enable support for 8723DE chipset 144 Select this option will enable support for 8723DS chipset 155 Select this option to enable support for 8723CS chipset (EXPERIMENTAL) 169 Select this option will enable support for 8723DU chipset [all …]
|
| /linux/tools/testing/selftests/nolibc/ |
| H A D | Makefile.include | 3 __CFLAGS_STACKPROTECTOR = $(call cc-option,-fstack-protector-all) $(call cc-option,-mstack-protector-guard=global) 7 _CFLAGS_SANITIZER ?= $(call cc-option,-fsanitize=undefined -fsanitize-trap=all) 10 $(call cc-option,-fno-stack-protector) $(call cc-option,-Wmissing-prototypes) \
|