/Linux-v5.4/scripts/ |
D | config | 16 --enable|-e option Enable option 17 --disable|-d option Disable option 18 --module|-m option Turn option into a module 19 --set-str option string 20 Set option to "string" 21 --set-val option value 22 Set option to value 23 --undefine|-u option Undefine option 24 --state|-s option Print state of option (n,y,m,undef) 26 --enable-after|-E beforeopt option [all …]
|
D | Makefile.ubsan | 3 CFLAGS_UBSAN += $(call cc-option, -fsanitize=shift) 4 CFLAGS_UBSAN += $(call cc-option, -fsanitize=integer-divide-by-zero) 5 CFLAGS_UBSAN += $(call cc-option, -fsanitize=unreachable) 6 CFLAGS_UBSAN += $(call cc-option, -fsanitize=signed-integer-overflow) 7 CFLAGS_UBSAN += $(call cc-option, -fsanitize=bounds) 8 CFLAGS_UBSAN += $(call cc-option, -fsanitize=object-size) 9 CFLAGS_UBSAN += $(call cc-option, -fsanitize=bool) 10 CFLAGS_UBSAN += $(call cc-option, -fsanitize=enum) 13 CFLAGS_UBSAN += $(call cc-option, -fsanitize=alignment) 18 CFLAGS_UBSAN += $(call cc-option, -Wno-maybe-uninitialized)
|
D | Makefile.extrawarn | 31 KBUILD_CFLAGS += $(call cc-option, -Wunused-but-set-variable) 32 KBUILD_CFLAGS += $(call cc-option, -Wunused-const-variable) 33 KBUILD_CFLAGS += $(call cc-option, -Wpacked-not-aligned) 34 KBUILD_CFLAGS += $(call cc-option, -Wstringop-truncation) 64 KBUILD_CFLAGS += $(call cc-option, -Wlogical-op) 67 KBUILD_CFLAGS += $(call cc-option, -Wmaybe-uninitialized) 68 KBUILD_CFLAGS += $(call cc-option, -Wunused-macros) 87 KBUILD_CFLAGS += $(call cc-option, -Wpacked-bitfield-compat)
|
/Linux-v5.4/drivers/pnp/ |
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 …]
|
D | resource.c | 38 struct pnp_option *option; in pnp_build_option() local 40 option = kzalloc(sizeof(struct pnp_option), GFP_KERNEL); in pnp_build_option() 41 if (!option) in pnp_build_option() 44 option->flags = option_flags; in pnp_build_option() 45 option->type = type; in pnp_build_option() 47 list_add_tail(&option->list, &dev->options); in pnp_build_option() 48 return option; in pnp_build_option() 54 struct pnp_option *option; in pnp_register_irq_resource() local 57 option = pnp_build_option(dev, IORESOURCE_IRQ, option_flags); in pnp_register_irq_resource() 58 if (!option) in pnp_register_irq_resource() [all …]
|
D | support.c | 92 char *pnp_option_priority_name(struct pnp_option *option) in pnp_option_priority_name() argument 94 switch (pnp_option_priority(option)) { in pnp_option_priority_name() 105 void dbg_pnp_show_option(struct pnp_dev *dev, struct pnp_option *option) in dbg_pnp_show_option() argument 114 if (pnp_option_is_dependent(option)) in dbg_pnp_show_option() 117 pnp_option_set(option), in dbg_pnp_show_option() 118 pnp_option_priority_name(option)); in dbg_pnp_show_option() 123 switch (option->type) { in dbg_pnp_show_option() 125 port = &option->u.port; in dbg_pnp_show_option() 134 mem = &option->u.mem; in dbg_pnp_show_option() 143 irq = &option->u.irq; in dbg_pnp_show_option() [all …]
|
/Linux-v5.4/arch/m68k/ |
D | Makefile | 43 cpuflags-$(CONFIG_M5441x) := $(call cc-option,-mcpu=54455,-mcfv4e) 44 cpuflags-$(CONFIG_M54xx) := $(call cc-option,-mcpu=5475,-m5200) 45 cpuflags-$(CONFIG_M5407) := $(call cc-option,-mcpu=5407,-m5200) 46 cpuflags-$(CONFIG_M532x) := $(call cc-option,-mcpu=532x,-m5307) 47 cpuflags-$(CONFIG_M537x) := $(call cc-option,-mcpu=537x,-m5307) 48 cpuflags-$(CONFIG_M5307) := $(call cc-option,-mcpu=5307,-m5200) 49 cpuflags-$(CONFIG_M528x) := $(call cc-option,-mcpu=528x,-m5307) 50 cpuflags-$(CONFIG_M5275) := $(call cc-option,-mcpu=5275,-m5307) 51 cpuflags-$(CONFIG_M5272) := $(call cc-option,-mcpu=5272,-m5307) 52 cpuflags-$(CONFIG_M5271) := $(call cc-option,-mcpu=5271,-m5307) [all …]
|
/Linux-v5.4/tools/perf/trace/beauty/ |
D | prctl.c | 14 static size_t prctl__scnprintf_option(int option, char *bf, size_t size, bool show_prefix) in prctl__scnprintf_option() argument 17 return strarray__scnprintf(&strarray__prctl_options, bf, size, "%d", show_prefix, option); in prctl__scnprintf_option() 20 static size_t prctl__scnprintf_set_mm(int option, char *bf, size_t size, bool show_prefix) in prctl__scnprintf_set_mm() argument 23 return strarray__scnprintf(&strarray__prctl_set_mm_options, bf, size, "%d", show_prefix, option); in prctl__scnprintf_set_mm() 28 int option = syscall_arg__val(arg, 0); in syscall_arg__scnprintf_prctl_arg2() local 30 if (option == PR_SET_MM) in syscall_arg__scnprintf_prctl_arg2() 36 if (option == PR_SET_NAME) in syscall_arg__scnprintf_prctl_arg2() 44 int option = syscall_arg__val(arg, 0); in syscall_arg__scnprintf_prctl_arg3() local 46 if (option == PR_SET_MM) in syscall_arg__scnprintf_prctl_arg3() 54 unsigned long option = arg->val; in syscall_arg__scnprintf_prctl_option() local [all …]
|
/Linux-v5.4/drivers/misc/cardreader/ |
D | rts5249.c | 96 struct rtsx_cr_option *option = &(pcr->option); in rts5249_init_from_cfg() local 118 if (option->ltr_en) { in rts5249_init_from_cfg() 123 option->ltr_enabled = true; in rts5249_init_from_cfg() 124 option->ltr_active = true; in rts5249_init_from_cfg() 125 rtsx_set_ltr_latency(pcr, option->ltr_active_latency); in rts5249_init_from_cfg() 127 option->ltr_enabled = false; in rts5249_init_from_cfg() 134 struct rtsx_cr_option *option = &(pcr->option); in rts5249_init_from_hw() local 138 option->force_clkreq_0 = false; in rts5249_init_from_hw() 140 option->force_clkreq_0 = true; in rts5249_init_from_hw() 147 struct rtsx_cr_option *option = &(pcr->option); in rts5249_extra_init_hw() local [all …]
|
D | rts5260.c | 195 struct rtsx_cr_option *option = &pcr->option; in rts5260_card_power_on() local 197 if (option->ocp_en) in rts5260_card_power_on() 291 if (pcr->option.ocp_en) in rts5260_card_power_off() 299 struct rtsx_cr_option *option = &pcr->option; in rts5260_init_ocp() local 301 if (option->ocp_en) { in rts5260_init_ocp() 307 option->sd_800mA_ocp_thd); in rts5260_init_ocp() 379 if (!pcr->option.ocp_en) in rts5260_process_ocp() 500 struct rtsx_cr_option *option = &pcr->option; in rts5260_init_from_cfg() local 519 if (option->ltr_en) { in rts5260_init_from_cfg() 524 option->ltr_enabled = true; in rts5260_init_from_cfg() [all …]
|
/Linux-v5.4/arch/powerpc/ |
D | Makefile | 15 HAS_BIARCH := $(call cc-option-yn, -m32) 84 KBUILD_CFLAGS_MODULE += $(call cc-option,-mno-save-toc-indirect) 86 KBUILD_CFLAGS += $(call cc-option,-mbig-endian) 94 cflags-$(CONFIG_CPU_BIG_ENDIAN) += $(call cc-option,-mabi=elfv1) 95 cflags-$(CONFIG_CPU_BIG_ENDIAN) += $(call cc-option,-mcall-aixdesc) 96 aflags-$(CONFIG_CPU_BIG_ENDIAN) += $(call cc-option,-mabi=elfv1) 104 cflags-$(CONFIG_CPU_BIG_ENDIAN) += $(call cc-option,-mbig-endian) 106 aflags-$(CONFIG_CPU_BIG_ENDIAN) += $(call cc-option,-mbig-endian) 125 LDFLAGS_vmlinux += $(call ld-option,--orphan-handling=warn) 128 ifeq ($(call cc-option-yn,-mcmodel=medium),y) [all …]
|
/Linux-v5.4/include/linux/ |
D | kconfig.h | 50 #define IS_BUILTIN(option) __is_defined(option) argument 56 #define IS_MODULE(option) __is_defined(option##_MODULE) argument 64 #define IS_REACHABLE(option) __or(IS_BUILTIN(option), \ argument 65 __and(IS_MODULE(option), __is_defined(MODULE))) 71 #define IS_ENABLED(option) __or(IS_BUILTIN(option), IS_MODULE(option)) argument
|
/Linux-v5.4/arch/x86/ |
D | Makefile | 17 ifneq ($(call cc-option, -mpreferred-stack-boundary=4),) 20 else ifneq ($(call cc-option, -mstack-alignment=16),) 32 M16_CFLAGS := $(call cc-option, -m16, $(CODE16GCC_CFLAGS)) 39 REALMODE_CFLAGS += $(call __cc-option, $(CC), $(REALMODE_CFLAGS), -ffreestanding) 40 REALMODE_CFLAGS += $(call __cc-option, $(CC), $(REALMODE_CFLAGS), -fno-stack-protector) 41 REALMODE_CFLAGS += $(call __cc-option, $(CC), $(REALMODE_CFLAGS), -Wno-address-of-packed-member) 42 REALMODE_CFLAGS += $(call __cc-option, $(CC), $(REALMODE_CFLAGS), $(cc_stack_align4)) 62 KBUILD_CFLAGS += $(call cc-option,-mno-avx,) 69 biarch := $(call cc-option,-m32) 82 KBUILD_CFLAGS += $(call cc-option,$(cc_stack_align4)) [all …]
|
D | Makefile_32.cpu | 6 HAS_MTUNE := $(call cc-option-yn, -mtune=i386) 8 tune = $(call cc-option,-mtune=$(1),$(2)) 10 tune = $(call cc-option,-mcpu=$(1),$(2)) 26 cflags-$(CONFIG_MK8) += $(call cc-option,-march=k8,-march=athlon) 29 cflags-$(CONFIG_MWINCHIPC6) += $(call cc-option,-march=winchip-c6,-march=i586) 30 cflags-$(CONFIG_MWINCHIP3D) += $(call cc-option,-march=winchip2,-march=i586) 31 cflags-$(CONFIG_MCYRIXIII) += $(call cc-option,-march=c3,-march=i486) -falign-functions=0 -falign-j… 32 cflags-$(CONFIG_MVIAC3_2) += $(call cc-option,-march=c3-2,-march=i686) 35 cflags-$(CONFIG_MATOM) += $(call cc-option,-march=atom,$(call cc-option,-march=core2,-march=i686))… 36 $(call cc-option,-mtune=atom,$(call cc-option,-mtune=generic)) [all …]
|
/Linux-v5.4/net/mac80211/ |
D | Kconfig | 13 This option enables the hardware independent IEEE 802.11 29 This option enables the 'minstrel' TX rate control algorithm 36 This option selects the default rate control algorithm 64 Select this option to enable 802.11 mesh operation in mac80211 75 This option enables a few LED triggers for different 91 Select this option to have mac80211 register the 96 The overhead in this option is that all the messages 104 This option collects various mac80211 debug settings. 110 This option affects code generation in mac80211, when 115 This option increases code size a bit and inserts a lot [all …]
|
/Linux-v5.4/tools/perf/Documentation/ |
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-v5.4/arch/powerpc/platforms/85xx/ |
D | Kconfig | 23 When selected, this option enables cache-sram support 26 parameters should be passed when this option is enabled. 32 This option enables support for the Freescale BSC9131RDB board. 41 This option enables support for the C293PCIE board 47 This option enables support for the Freescale BSC9132 QDS board. 56 This option enables support for the MPC 8540 ADS board 63 This option enables support for the MPC 8560 ADS board 71 This option enables support for the MPC85xx CDS board 80 This option enables support for the MPC85xx MDS board 87 This option enables support for the MPC8536 DS board [all …]
|
/Linux-v5.4/drivers/ata/ |
D | Kconfig | 41 This option adds parsing of ATA command descriptions and error bits 43 This option will enlarge the kernel by approx. 6KB. Disable it only 53 This option adds support for ATA-related ACPI objects. 59 option libata.noacpi=1 65 This option adds support for SATA Zero Power Optical Disc 78 This option adds support for SATA Port Multipliers 89 This option enables support for AHCI Serial ATA. 115 This option enables support for Platform AHCI Serial ATA 125 This option enables support for the AHCI SATA3 controller found on 134 This option enables support for the DaVinci DA850 SoC's [all …]
|
/Linux-v5.4/tools/bpf/ |
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-v5.4/sound/soc/intel/ |
D | Kconfig | 10 enable this option by saying Y 20 # This option controls the IPC core for HiFi2 platforms 25 # This option controls the PCI-based IPC for HiFi2 platforms 31 # This option controls the ACPI-based IPC for HiFi2 platforms 36 # This option controls ACPI-based probing on 46 # This option controls firmware download on 60 an I2S codec, then enable this option by saying Y or m. This is 61 typically used for Chromebooks. This is a recommended option. 72 then enable this option by saying Y or m. This was typically used 73 for Baytrail Chromebooks but this option is now deprecated and is [all …]
|
/Linux-v5.4/arch/x86/lib/ |
D | cmdline.c | 29 const char *option) in __cmdline_find_option_bool() argument 59 opptr = option; in __cmdline_find_option_bool() 122 const char *option, char *buffer, int bufsize) in __cmdline_find_option() argument 153 opptr = option; in __cmdline_find_option() 204 int cmdline_find_option_bool(const char *cmdline, const char *option) in cmdline_find_option_bool() argument 206 return __cmdline_find_option_bool(cmdline, COMMAND_LINE_SIZE, option); in cmdline_find_option_bool() 209 int cmdline_find_option(const char *cmdline, const char *option, char *buffer, in cmdline_find_option() argument 212 return __cmdline_find_option(cmdline, COMMAND_LINE_SIZE, option, in cmdline_find_option()
|
/Linux-v5.4/drivers/gpu/drm/exynos/ |
D | Kconfig | 10 Choose this option if you have a Samsung SoC EXYNOS chipset. 22 Choose this option if you want to use Exynos FIMD for DRM. 27 Choose this option if you want to use Exynos5433 DECON for DRM. 33 Choose this option if you want to use Exynos DECON for DRM. 38 Choose this option if you want to use Exynos Mixer for DRM. 43 Choose this option if you want to use Exynos VIDI for DRM. 78 Choose this option if you want to use Exynos HDMI for DRM. 84 Choose this option if you want to use Exynos MIC for DRM. 93 Choose this option if you want to use Exynos G2D for DRM. 102 Choose this option if you want to use Exynos FIMC for DRM. [all …]
|
/Linux-v5.4/arch/sh/ |
D | Makefile | 39 cflags-$(CONFIG_CPU_SH2) := $(call cc-option,-m2,) 40 cflags-$(CONFIG_CPU_J2) += $(call cc-option,-mj2,) 41 cflags-$(CONFIG_CPU_SH2A) += $(call cc-option,-m2a,) \ 42 $(call cc-option,-m2a-nofpu,) \ 43 $(call cc-option,-m4-nofpu,) 44 cflags-$(CONFIG_CPU_SH3) := $(call cc-option,-m3,) 45 cflags-$(CONFIG_CPU_SH4) := $(call cc-option,-m4,) \ 46 $(call cc-option,-mno-implicit-fp,-m4-nofpu) 47 cflags-$(CONFIG_CPU_SH4A) += $(call cc-option,-m4a,) \ 48 $(call cc-option,-m4a-nofpu,) [all …]
|
/Linux-v5.4/arch/powerpc/platforms/44x/ |
D | Kconfig | 7 This option enables support for the 47x family of processors and is 17 This option enables support for the IBM PPC440EP evaluation board. 30 This option enables support for the APM APM821xx Evaluation board. 40 This option enables support for the IBM PPC440GP evaluation board. 48 This option enables support for the ACube Sam440ep board. 56 This option enables support for the AMCC PPC440EPX evaluation board. 65 This option enables support for the AMCC PPC440GX "Taishan" 78 This option enables support for the AMCC PPC440SPe evaluation board. 87 This option enables support for the AMCC PPC440GRX evaluation board. 94 This option enables support for the PIKA Warp(tm) Appliance. The Warp [all …]
|
/Linux-v5.4/arch/x86/um/ |
D | syscalls_64.c | 15 long arch_prctl(struct task_struct *task, int option, in arch_prctl() argument 35 switch (option) { in arch_prctl() 55 ret = os_arch_prctl(pid, option, ptr); in arch_prctl() 59 switch (option) { in arch_prctl() 78 SYSCALL_DEFINE2(arch_prctl, int, option, unsigned long, arg2) in SYSCALL_DEFINE2() argument 80 return arch_prctl(current, option, (unsigned long __user *) arg2); in SYSCALL_DEFINE2()
|