| /kernel/linux/linux-5.10/drivers/usb/gadget/function/ |
| D | f_mass_storage.h | 1 /* SPDX-License-Identifier: GPL-2.0 */ 21 #define _FSG_MODULE_PARAM_ARRAY(prefix, params, name, type, desc) \ argument 22 module_param_array_named(prefix ## name, params.name, type, \ 23 &prefix ## params.name ## _count, \ 25 MODULE_PARM_DESC(prefix ## name, desc) 27 #define _FSG_MODULE_PARAM(prefix, params, name, type, desc) \ argument 28 module_param_named(prefix ## name, params.name, type, \ 30 MODULE_PARM_DESC(prefix ## name, desc) 32 #define __FSG_MODULE_PARAMETERS(prefix, params) \ argument 33 _FSG_MODULE_PARAM_ARRAY(prefix, params, file, charp, \ [all …]
|
| /kernel/linux/linux-6.6/drivers/usb/gadget/function/ |
| D | f_mass_storage.h | 1 /* SPDX-License-Identifier: GPL-2.0 */ 21 #define _FSG_MODULE_PARAM_ARRAY(prefix, params, name, type, desc) \ argument 22 module_param_array_named(prefix ## name, params.name, type, \ 23 &prefix ## params.name ## _count, \ 25 MODULE_PARM_DESC(prefix ## name, desc) 27 #define _FSG_MODULE_PARAM(prefix, params, name, type, desc) \ argument 28 module_param_named(prefix ## name, params.name, type, \ 30 MODULE_PARM_DESC(prefix ## name, desc) 32 #define __FSG_MODULE_PARAMETERS(prefix, params) \ argument 33 _FSG_MODULE_PARAM_ARRAY(prefix, params, file, charp, \ [all …]
|
| /kernel/linux/linux-6.6/include/linux/ |
| D | btf_ids.h | 1 /* SPDX-License-Identifier: GPL-2.0 */ 51 #define __ID(prefix) \ argument 52 __PASTE(__PASTE(prefix, __COUNTER__), __LINE__) 58 #define BTF_ID(prefix, name) \ argument 59 __BTF_ID(__ID(__BTF_ID__##prefix##__##name##__), "") 61 #define ____BTF_ID_FLAGS(prefix, name, flags) \ argument 62 __BTF_ID(__ID(__BTF_ID__##prefix##__##name##__), ".long " #flags "\n") 63 #define __BTF_ID_FLAGS(prefix, name, flags, ...) \ argument 64 ____BTF_ID_FLAGS(prefix, name, flags) 65 #define BTF_ID_FLAGS(prefix, name, ...) \ argument [all …]
|
| /kernel/linux/linux-6.6/tools/testing/selftests/tc-testing/tc-tests/actions/ |
| D | xt.json | 4 "name": "Add xt action with log-prefix", string 17 "cmdUnderTest": "$TC action add action xt -j LOG --log-prefix PONG index 100", 20 … "matchPattern": "action order [0-9]*:.*target LOG level warning prefix \"PONG\".*index 100 ref", 28 "name": "Replace xt action log-prefix", string 41 "$TC action add action xt -j LOG --log-prefix PONG index 1", 47 "cmdUnderTest": "$TC action replace action xt -j LOG --log-prefix WIN index 1", 50 … "matchPattern": "action order [0-9]*:.*target LOG level warning prefix \"WIN\".*index 1 ref", 58 "name": "Delete xt action with valid index", string 71 "$TC action add action xt -j LOG --log-prefix PONG index 1000", 80 … "matchPattern": "action order [0-9]*:.*target LOG level warning prefix \"PONG\".*index 1000 ref", [all …]
|
| /kernel/linux/linux-6.6/drivers/firmware/broadcom/ |
| D | bcm47xx_sprom.c | 6 * Copyright (C) 2010-2012 Hauke Mehrtens <hauke@hauke-m.de> 36 static void create_key(const char *prefix, const char *postfix, in create_key() argument 37 const char *name, char *buf, int len) in create_key() argument 39 if (prefix && postfix) in create_key() 40 snprintf(buf, len, "%s%s%s", prefix, name, postfix); in create_key() 41 else if (prefix) in create_key() 42 snprintf(buf, len, "%s%s", prefix, name); in create_key() 44 snprintf(buf, len, "%s%s", name, postfix); in create_key() 46 snprintf(buf, len, "%s", name); in create_key() 49 static int get_nvram_var(const char *prefix, const char *postfix, in get_nvram_var() argument [all …]
|
| /kernel/linux/linux-5.10/drivers/firmware/broadcom/ |
| D | bcm47xx_sprom.c | 6 * Copyright (C) 2010-2012 Hauke Mehrtens <hauke@hauke-m.de> 36 static void create_key(const char *prefix, const char *postfix, in create_key() argument 37 const char *name, char *buf, int len) in create_key() argument 39 if (prefix && postfix) in create_key() 40 snprintf(buf, len, "%s%s%s", prefix, name, postfix); in create_key() 41 else if (prefix) in create_key() 42 snprintf(buf, len, "%s%s", prefix, name); in create_key() 44 snprintf(buf, len, "%s%s", name, postfix); in create_key() 46 snprintf(buf, len, "%s", name); in create_key() 49 static int get_nvram_var(const char *prefix, const char *postfix, in get_nvram_var() argument [all …]
|
| /kernel/linux/linux-6.6/scripts/ |
| D | syscallhdr.sh | 2 # SPDX-License-Identifier: GPL-2.0-only 8 # NR ABI NAME [NATIVE] [COMPAT] 11 # ABI ABI name 12 # NAME syscall name 16 set -e 19 …echo >&2 "usage: $0 [--abis ABIS] [--emit-nr] [--offset OFFSET] [--prefix PREFIX] INFILE OUTFILE" … 25 echo >&2 " --abis ABIS ABI(s) to handle (By default, all lines are handled)" 26 echo >&2 " --emit-nr Emit the macro of the number of syscalls (__NR_syscalls)" 27 echo >&2 " --offset OFFSET The offset of syscall numbers" 28 echo >&2 " --prefix PREFIX The prefix to the macro like __NR_<PREFIX><NAME>" [all …]
|
| D | syscallnr.sh | 2 # SPDX-License-Identifier: GPL-2.0-only 8 # NR ABI NAME [NATIVE] [COMPAT] 11 # ABI ABI name 12 # NAME syscall name 15 set -e 18 echo >&2 "usage: $0 [--abis ABIS] [--prefix PREFIX] INFILE OUTFILE" >&2 24 echo >&2 " --abis ABIS ABI(s) to handle (By default, all lines are handled)" 25 echo >&2 " --prefix PREFIX The prefix to the macro like __NR_<PREFIX><NAME>" 31 prefix= 33 while [ $# -gt 0 ] [all …]
|
| /kernel/linux/linux-6.6/arch/arm64/boot/dts/amlogic/ |
| D | meson-g12.dtsi | 1 // SPDX-License-Identifier: (GPL-2.0+ OR MIT) 7 #include "meson-g12-common.dtsi" 8 #include <dt-bindings/clock/axg-audio-clkc.h> 9 #include <dt-bindings/power/meson-g12a-power.h> 10 #include <dt-bindings/reset/amlogic,meson-axg-audio-arb.h> 11 #include <dt-bindings/reset/amlogic,meson-g12a-audio-reset.h> 14 tdmif_a: audio-controller-0 { 15 compatible = "amlogic,axg-tdm-iface"; 16 #sound-dai-cells = <0>; 17 sound-name-prefix = "TDM_A"; [all …]
|
| D | meson-sm1.dtsi | 1 // SPDX-License-Identifier: (GPL-2.0+ OR MIT) 7 #include "meson-g12-common.dtsi" 8 #include <dt-bindings/clock/axg-audio-clkc.h> 9 #include <dt-bindings/power/meson-sm1-power.h> 10 #include <dt-bindings/reset/amlogic,meson-axg-audio-arb.h> 11 #include <dt-bindings/reset/amlogic,meson-g12a-audio-reset.h> 16 tdmif_a: audio-controller-0 { 17 compatible = "amlogic,axg-tdm-iface"; 18 #sound-dai-cells = <0>; 19 sound-name-prefix = "TDM_A"; [all …]
|
| /kernel/linux/linux-5.10/arch/arm64/boot/dts/amlogic/ |
| D | meson-g12.dtsi | 1 // SPDX-License-Identifier: (GPL-2.0+ OR MIT) 7 #include "meson-g12-common.dtsi" 8 #include <dt-bindings/clock/axg-audio-clkc.h> 9 #include <dt-bindings/power/meson-g12a-power.h> 10 #include <dt-bindings/reset/amlogic,meson-axg-audio-arb.h> 11 #include <dt-bindings/reset/amlogic,meson-g12a-audio-reset.h> 14 tdmif_a: audio-controller-0 { 15 compatible = "amlogic,axg-tdm-iface"; 16 #sound-dai-cells = <0>; 17 sound-name-prefix = "TDM_A"; [all …]
|
| /kernel/linux/linux-5.10/Documentation/devicetree/bindings/sound/ |
| D | name-prefix.txt | 1 Name prefix: 5 sink/source names may use the name prefix property to prepend the 6 name of their sinks/sources with the provided string. 8 Optional name prefix property: 9 - sound-name-prefix : string using as prefix for the sink/source names of 14 amp0: analog-amplifier@0 { 15 compatible = "simple-audio-amplifier"; 16 enable-gpios = <&gpio GPIOH_3 0>; 17 sound-name-prefix = "FRONT"; 20 amp1: analog-amplifier@1 { [all …]
|
| /kernel/linux/linux-6.6/tools/include/linux/ |
| D | btf_ids.h | 1 /* SPDX-License-Identifier: GPL-2.0 */ 51 #define __ID(prefix) \ argument 52 __PASTE(__PASTE(prefix, __COUNTER__), __LINE__) 58 #define BTF_ID(prefix, name) \ argument 59 __BTF_ID(__ID(__BTF_ID__##prefix##__##name##__)) 76 #define __BTF_ID_LIST(name, scope) \ argument 79 "." #scope " " #name "; \n" \ 80 #name ":; \n" \ 83 #define BTF_ID_LIST(name) \ argument 84 __BTF_ID_LIST(name, local) \ [all …]
|
| /kernel/linux/linux-6.6/drivers/clk/qcom/ |
| D | lcc-msm8960.c | 1 // SPDX-License-Identifier: GPL-2.0-only 12 #include <linux/clk-provider.h> 15 #include <dt-bindings/clock/qcom,lcc-msm8960.h> 18 #include "clk-regmap.h" 19 #include "clk-pll.h" 20 #include "clk-rcg.h" 21 #include "clk-branch.h" 22 #include "clk-regmap-divider.h" 23 #include "clk-regmap-mux.h" 26 .fw_name = "pxo", .name = "pxo_board", [all …]
|
| /kernel/linux/linux-5.10/drivers/regulator/ |
| D | mc13xxx.h | 1 /* SPDX-License-Identifier: GPL-2.0-or-later */ 3 * mc13xxx.h - regulators for the Freescale mc13xxx PMIC 41 return -ENODEV; in mc13xxx_get_num_regulators_dt() 55 #define MC13xxx_DEFINE(prefix, _name, _node, _reg, _vsel_reg, _voltages, _ops) \ argument 56 [prefix ## _name] = { \ 58 .name = #_node, \ 63 .id = prefix ## _name, \ 66 .reg = prefix ## _reg, \ 67 .enable_bit = prefix ## _reg ## _ ## _name ## EN, \ 68 .vsel_reg = prefix ## _vsel_reg, \ [all …]
|
| /kernel/linux/linux-6.6/drivers/regulator/ |
| D | mc13xxx.h | 1 /* SPDX-License-Identifier: GPL-2.0-or-later */ 3 * mc13xxx.h - regulators for the Freescale mc13xxx PMIC 41 return -ENODEV; in mc13xxx_get_num_regulators_dt() 55 #define MC13xxx_DEFINE(prefix, _name, _node, _reg, _vsel_reg, _voltages, _ops) \ argument 56 [prefix ## _name] = { \ 58 .name = #_node, \ 63 .id = prefix ## _name, \ 66 .reg = prefix ## _reg, \ 67 .enable_bit = prefix ## _reg ## _ ## _name ## EN, \ 68 .vsel_reg = prefix ## _vsel_reg, \ [all …]
|
| /kernel/linux/linux-5.10/fs/xfs/ |
| D | xfs_xattr.c | 1 // SPDX-License-Identifier: GPL-2.0 4 * Portions Copyright (C) 2000-2008 Silicon Graphics, Inc. 22 struct inode *inode, const char *name, void *value, size_t size) in xfs_xattr_get() argument 26 .attr_filter = handler->flags, in xfs_xattr_get() 27 .name = name, in xfs_xattr_get() 28 .namelen = strlen(name), in xfs_xattr_get() 42 struct inode *inode, const char *name, const void *value, in xfs_xattr_set() argument 47 .attr_filter = handler->flags, in xfs_xattr_set() 49 .name = name, in xfs_xattr_set() 50 .namelen = strlen(name), in xfs_xattr_set() [all …]
|
| /kernel/linux/linux-5.10/include/sound/ |
| D | simple_card_utils.h | 1 /* SPDX-License-Identifier: GPL-2.0 14 #define asoc_simple_init_hp(card, sjack, prefix) \ argument 15 asoc_simple_init_jack(card, sjack, 1, prefix, NULL) 16 #define asoc_simple_init_mic(card, sjack, prefix) \ argument 17 asoc_simple_init_jack(card, sjack, 0, prefix, NULL) 20 const char *name; member 60 #define simple_priv_to_card(priv) (&(priv)->snd_card) 61 #define simple_priv_to_props(priv, i) ((priv)->dai_props + (i)) 62 #define simple_priv_to_dev(priv) (simple_priv_to_card(priv)->dev) 63 #define simple_priv_to_link(priv, i) (simple_priv_to_card(priv)->dai_link + (i)) [all …]
|
| /kernel/linux/linux-6.6/sound/soc/generic/ |
| D | simple-card.c | 1 // SPDX-License-Identifier: GPL-2.0 16 #include <sound/soc-dai.h> 21 #define DAI "sound-dai" 22 #define CELL "#sound-dai-cells" 23 #define PREFIX "simple-audio-card," macro 41 * Get node via "sound-dai = <&phandle port>" in asoc_simple_parse_platform() 50 dlc->of_node = args.np; in asoc_simple_parse_platform() 68 * Get node via "sound-dai = <&phandle port>" in asoc_simple_parse_dai() 80 dlc->dai_name = snd_soc_dai_name_get(dai); in asoc_simple_parse_dai() 81 dlc->dai_args = snd_soc_copy_dai_args(dev, &args); in asoc_simple_parse_dai() [all …]
|
| /kernel/linux/linux-6.6/Documentation/netlink/ |
| D | genetlink-c.yaml | 1 # SPDX-License-Identifier: ((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) 3 --- 4 $id: http://kernel.org/schemas/netlink/genetlink-c.yaml# 5 $schema: https://json-schema.org/draft-07/schema 12 len-or-define: 14 pattern: ^[0-9A-Za-z_]+( - 1)?$ 21 required: [ name, doc, attribute-sets, operations ] 24 name: 25 description: Name of the genetlink family. 35 enum: [ genetlink, genetlink-c ] [all …]
|
| D | genetlink-legacy.yaml | 1 # SPDX-License-Identifier: ((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) 3 --- 4 $id: http://kernel.org/schemas/netlink/genetlink-legacy.yaml# 5 $schema: https://json-schema.org/draft-07/schema 12 len-or-define: 14 pattern: ^[0-9A-Za-z_]+( - 1)?$ 21 required: [ name, doc, attribute-sets, operations ] 24 name: 25 description: Name of the genetlink family. 35 enum: [ genetlink, genetlink-c, genetlink-legacy ] # Trim [all …]
|
| /kernel/linux/linux-5.10/sound/soc/generic/ |
| D | simple-card.c | 1 // SPDX-License-Identifier: GPL-2.0 16 #include <sound/soc-dai.h> 21 #define DAI "sound-dai" 22 #define CELL "#sound-dai-cells" 23 #define PREFIX "simple-audio-card," macro 42 * Get node via "sound-dai = <&phandle port>" in asoc_simple_parse_dai() 52 * Here, dlc->dai_name is pointer to CPU/Codec DAI name. in asoc_simple_parse_dai() 54 * dlc->dai_name is keeping unbinded CPU or Codec in asoc_simple_parse_dai() 57 * If user re-bind CPU or Codec driver again, ALSA SoC will try in asoc_simple_parse_dai() 68 ret = snd_soc_of_get_dai_name(node, &dlc->dai_name); in asoc_simple_parse_dai() [all …]
|
| D | simple-card-utils.c | 1 // SPDX-License-Identifier: GPL-2.0 3 // simple-card-utils.c 25 if (data->convert_rate) in asoc_simple_convert_fixup() 26 rate->min = in asoc_simple_convert_fixup() 27 rate->max = data->convert_rate; in asoc_simple_convert_fixup() 29 if (data->convert_channels) in asoc_simple_convert_fixup() 30 channels->min = in asoc_simple_convert_fixup() 31 channels->max = data->convert_channels; in asoc_simple_convert_fixup() 37 char *prefix, in asoc_simple_parse_convert() argument 42 if (!prefix) in asoc_simple_parse_convert() [all …]
|
| /kernel/linux/linux-5.10/tools/include/linux/ |
| D | btf_ids.h | 1 /* SPDX-License-Identifier: GPL-2.0 */ 40 #define __ID(prefix) \ argument 41 __PASTE(__PASTE(prefix, __COUNTER__), __LINE__) 47 #define BTF_ID(prefix, name) \ argument 48 __BTF_ID(__ID(__BTF_ID__##prefix##__##name##__)) 65 #define __BTF_ID_LIST(name, scope) \ argument 68 "." #scope " " #name "; \n" \ 69 #name ":; \n" \ 72 #define BTF_ID_LIST(name) \ argument 73 __BTF_ID_LIST(name, local) \ [all …]
|
| /kernel/linux/linux-5.10/include/linux/ |
| D | btf_ids.h | 1 /* SPDX-License-Identifier: GPL-2.0 */ 40 #define __ID(prefix) \ argument 41 __PASTE(__PASTE(prefix, __COUNTER__), __LINE__) 47 #define BTF_ID(prefix, name) \ argument 48 __BTF_ID(__ID(__BTF_ID__##prefix##__##name##__)) 65 #define __BTF_ID_LIST(name, scope) \ argument 68 "." #scope " " #name "; \n" \ 69 #name ":; \n" \ 72 #define BTF_ID_LIST(name) \ argument 73 __BTF_ID_LIST(name, local) \ [all …]
|