Searched refs:comma (Results 1 - 25 of 34) sorted by path

12

/linux-master/arch/arm/
H A DMakefile131 AFLAGS_NOWARN :=$(call as-option,-Wa$(comma)-mno-warn-deprecated,-Wa$(comma)-W)
135 AFLAGS_ISA :=$(CFLAGS_ISA) -Wa$(comma)-mthumb
/linux-master/arch/loongarch/
H A DMakefile95 KBUILD_AFLAGS += $(call cc-option,-mno-relax) $(call cc-option,-Wa$(comma)-mno-relax)
96 KBUILD_CFLAGS += $(call cc-option,-mno-relax) $(call cc-option,-Wa$(comma)-mno-relax)
97 KBUILD_AFLAGS += $(call cc-option,-mthin-add-sub) $(call cc-option,-Wa$(comma)-mthin-add-sub)
98 KBUILD_CFLAGS += $(call cc-option,-mthin-add-sub) $(call cc-option,-Wa$(comma)-mthin-add-sub)
/linux-master/arch/loongarch/vdso/
H A DMakefile20 $(filter -W%,$(filter-out -Wa$(comma)%,$(KBUILD_CFLAGS))) \
/linux-master/arch/mips/
H A DMakefile146 cflags-y += $(call cc-option,-Wa$(comma)-mno-fix-loongson3-llsc,)
222 cflags-$(CONFIG_CPU_LOONGSON64) += $(call as-option,-Wa$(comma)-mno-fix-loongson3-llsc,)
243 toolchain-msa := $(call cc-option-yn,$(mips-cflags) -mhard-float -mfp64 -Wa$(comma)-mmsa)
251 xpa-cflags-$(micromips-ase) += -mmicromips -Wa$(comma)-fatal-warnings
254 toolchain-crc := $(call cc-option-yn,$(mips-cflags) -Wa$(comma)-mcrc)
256 toolchain-dsp := $(call cc-option-yn,$(mips-cflags) -Wa$(comma)-mdsp)
258 toolchain-ginv := $(call cc-option-yn,$(mips-cflags) -Wa$(comma)-mginv)
/linux-master/arch/mips/vdso/
H A DMakefile29 $(filter -W%,$(filter-out -Wa$(comma)%,$(KBUILD_CFLAGS))) \
/linux-master/arch/parisc/kernel/vdso32/
H A DMakefile13 $(call ld-option, -Wl$(comma)--hash-style=sysv)
/linux-master/arch/parisc/kernel/vdso64/
H A DMakefile13 $(call ld-option, -Wl$(comma)--hash-style=sysv)
/linux-master/arch/powerpc/
H A DMakefile169 asinstr := $(call as-instr,lis 9$(comma)foo@high,-DHAVE_AS_ATHIGH=1)
/linux-master/arch/powerpc/kernel/vdso/
H A DMakefile56 ldflags-y += $(filter-out $(CC_AUTO_VAR_INIT_ZERO_ENABLER) $(CC_FLAGS_FTRACE) -Wa$(comma)%, $(KBUILD_CFLAGS))
/linux-master/arch/riscv/
H A DMakefile104 KBUILD_CFLAGS += $(call as-option,-Wa$(comma)-mno-arch-attr)
105 KBUILD_AFLAGS += $(call as-option,-Wa$(comma)-mno-arch-attr)
108 KBUILD_AFLAGS_MODULE += $(call as-option,-Wa$(comma)-mno-relax)
/linux-master/arch/riscv/kernel/compat_vdso/
H A DMakefile25 COMPAT_CC_FLAGS += $(call as-option,-Wa$(comma)-mno-arch-attr)
/linux-master/arch/s390/
H A DMakefile111 cfi := $(call as-instr,.cfi_startproc\n.cfi_val_offset 15$(comma)-160\n.cfi_endproc,-DCONFIG_AS_CFI_VAL_OFFSET=1)
/linux-master/arch/sh/
H A DMakefile57 isaflags-y := $(call as-option,-Wa$(comma)-isa=any,)
67 isaflags-y := $(call as-option,-Wa$(comma)-isa=$(isa-y),)
70 $(call as-option,-Wa$(comma)-isa=$(isa-y),-Wa$(comma)-dsp)
/linux-master/arch/x86/boot/compressed/
H A DMakefile44 KBUILD_CFLAGS += $(call cc-option,-Wa$(comma)-mrelax-relocations=no)
/linux-master/certs/
H A DMakefile17 { cat $(CONFIG_SYSTEM_BLACKLIST_HASH_LIST); echo $(comma) NULL; } > $@, \
/linux-master/drivers/base/firmware_loader/builtin/
H A DMakefile13 FWSTR = $(subst $(comma),_,$(subst /,_,$(subst .,_,$(subst -,_,$(FWNAME)))))
/linux-master/drivers/md/
H A Dmd-autodetect.c233 char *comma = strchr(str+pos, ','); local
235 if (comma)
236 wlen = (comma-str)-pos;
/linux-master/drivers/media/cec/core/
H A Dcec-pin-error-inj.c80 char *comma; local
145 comma = strchr(token, ',');
146 if (comma)
147 *comma++ = '\0';
161 if (comma) {
162 if (!strcmp(comma, "off"))
164 else if (!strcmp(comma, "once"))
166 else if (!strcmp(comma, "always"))
168 else if (!strcmp(comma, "toggle"))
/linux-master/drivers/pinctrl/tegra/
H A Dpinctrl-tegra-xusb.c415 const char *comma = strchr(s, ','); local
416 if (!comma)
419 return comma + 1;
H A Dpinctrl-tegra.c607 const char *comma = strchr(s, ','); local
608 if (!comma)
611 return comma + 1;
/linux-master/fs/nfs/
H A Dfs_context.c972 const char *comma; local
980 comma = memchr(dev_name, ',', len);
981 if (comma)
982 len = comma - dev_name;
/linux-master/kernel/
H A Dwatchdog_perf.c284 char *comma = strchr(str, ','); local
286 if (!comma) {
290 unsigned int len = comma - str;
H A Dworkqueue.c6126 bool comma; member in struct:pr_cont_work_struct
6131 static void pr_cont_work_flush(bool comma, work_func_t func, struct pr_cont_work_struct *pcwsp) argument
6140 pr_cont("%s %ps", pcwsp->comma ? "," : "", pcwsp->func);
6142 pr_cont("%s %ld*%ps", pcwsp->comma ? "," : "", pcwsp->ctr, pcwsp->func);
6147 pcwsp->comma = comma;
6152 static void pr_cont_work(bool comma, struct work_struct *work, struct pr_cont_work_struct *pcwsp) argument
6159 pr_cont_work_flush(comma, (work_func_t)-1, pcwsp);
6160 pr_cont("%s BAR(%d)", comma ? "," : "",
6163 if (!comma)
6192 bool comma = false; local
6217 bool comma = false; local
6232 bool comma = false; local
[all...]
/linux-master/scripts/
H A DMakefile.compiler32 # Usage: aflags-y += $(call as-option,-Wa$(comma)-isa=foo,)
41 printf "%b\n" "$(1)" | $(CC) -Werror $(CLANG_FLAGS) $(KBUILD_AFLAGS) -Wa$(comma)--fatal-warnings -c -x assembler-with-cpp -o "$$TMP" -,$(2),$(3))
H A DMakefile.debug15 KBUILD_AFLAGS += $(addprefix -Wa$(comma), $(debug-flags-y))

Completed in 316 milliseconds

12