Home
last modified time | relevance | path

Searched refs:module (Results 1 – 25 of 2534) sorted by relevance

12345678910>>...102

/linux/drivers/greybus/
H A Dmodule.c16 struct gb_module *module = to_gb_module(dev); in eject_store() local
29 for (i = 0; i < module->num_interfaces; ++i) { in eject_store()
30 intf = module->interfaces[i]; in eject_store()
41 ret = gb_svc_intf_eject(module->hd->svc, module->module_id); in eject_store()
52 struct gb_module *module = to_gb_module(dev); in module_id_show() local
54 return sprintf(buf, "%u\n", module->module_id); in module_id_show()
61 struct gb_module *module = to_gb_module(dev); in num_interfaces_show() local
63 return sprintf(buf, "%zu\n", module->num_interfaces); in num_interfaces_show()
73 ATTRIBUTE_GROUPS(module);
77 struct gb_module *module = to_gb_module(dev); in gb_module_release() local
[all …]
/linux/drivers/staging/greybus/
H A Daudio_manager.c27 struct gb_audio_manager_module *module; in gb_audio_manager_get_locked() local
32 list_for_each_entry(module, &modules_list, list) { in gb_audio_manager_get_locked()
33 if (module->id == id) in gb_audio_manager_get_locked()
34 return module; in gb_audio_manager_get_locked()
43 struct gb_audio_manager_module *module; in gb_audio_manager_add() local
51 err = gb_audio_manager_module_create(&module, manager_kset, in gb_audio_manager_add()
60 list_add_tail(&module->list, &modules_list); in gb_audio_manager_add()
63 return module->id; in gb_audio_manager_add()
69 struct gb_audio_manager_module *module; in gb_audio_manager_remove() local
73 module = gb_audio_manager_get_locked(id); in gb_audio_manager_remove()
[all …]
H A Daudio_module.c20 static int gbaudio_request_jack(struct gbaudio_module_info *module, in gbaudio_request_jack() argument
24 struct snd_jack *jack = module->headset.jack.jack; in gbaudio_request_jack()
25 struct snd_jack *btn_jack = module->button.jack.jack; in gbaudio_request_jack()
28 dev_err_ratelimited(module->dev, in gbaudio_request_jack()
34 dev_warn_ratelimited(module->dev, in gbaudio_request_jack()
39 module->jack_type = 0; in gbaudio_request_jack()
40 if (btn_jack && module->button_status) { in gbaudio_request_jack()
41 snd_soc_jack_report(&module->button.jack, 0, in gbaudio_request_jack()
42 module->button_mask); in gbaudio_request_jack()
43 module->button_status = 0; in gbaudio_request_jack()
[all …]
H A DKconfig11 To compile this code as a module, chose M here: the module
22 To compile this code as a module, chose M here: the module
32 To compile this code as a module, chose M here: the module
42 To compile this code as a module, chose M here: the module
52 To compile this code as a module, chose M here: the module
62 To compile this code as a module, chose M here: the module
72 To compile this code as a module, chose M here: the module
81 To compile this code as a module, chose M here: the module
90 To compile this code as a module, chose M here: the module
100 To compile this code as a module, chose M here: the module
[all …]
/linux/kernel/module/
H A Dinternal.h67 struct module *mod;
109 struct module *owner;
119 struct module *source, *target;
123 int try_to_force_load(struct module *mod, const char *reason);
125 struct module *find_module_all(const char *name, size_t len, bool even_unformed);
127 long module_get_offset_and_type(struct module *mod, enum mod_mem_type type,
129 char *module_flags(struct module *mod, char *buf, bool show_state);
147 int copy_module_elf(struct module *mod, struct load_info *info);
148 void free_module_elf(struct module *mod);
150 static inline int copy_module_elf(struct module *mod, struct load_info *info) in copy_module_elf()
[all …]
/linux/include/linux/
H A Dcodetag.h14 struct module;
42 int (*module_load)(struct module *mod,
44 void (*module_unload)(struct module *mod,
47 void (*module_replaced)(struct module *mod, struct module *new_mod);
48 bool (*needs_section_mem)(struct module *mod, unsigned long size);
49 void *(*alloc_section_mem)(struct module *mod, unsigned long size,
51 void (*free_section_mem)(struct module *mod, bool used);
89 bool codetag_needs_module_section(struct module *mod, const char *name,
91 void *codetag_alloc_module_section(struct module *mod, const char *name,
94 void codetag_free_module_sections(struct module *mod);
[all …]
/linux/scripts/
H A Ddecode_stacktrace.sh118 …echo "WARNING! No debugging info in module ${module}, rebuild with DEBUG_KERNEL and DEBUG_INFO" >&2
120 echo "WARNING! Cannot find .ko for module ${module}, please pass a valid module path" >&2
133 if [[ $module == "" ]] ; then
135 elif [[ $aarray_support == true && "${modcache[$module]+isset}" == "isset" ]]; then
136 local objfile=${modcache[$module]}
143 modcache[$module]=$objfile
164 if [[ $aarray_support == true && "${cache[$module,$name]+isset}" == "isset" ]]; then
165 local base_addr=${cache[$module,$name]}
173 cache[$module,$name]="$base_addr"
190 if [[ $aarray_support == true && "${cache[$module,$address]+isset}" == "isset" ]]; then
[all …]
/linux/drivers/media/usb/gspca/
H A DKconfig17 module will be called gspca_main.
27 To compile this driver as a module, choose M here: the
28 module will be called gspca_benq.
36 To compile this driver as a module, choose M here: the
37 module will be called gspca_conex.
47 To compile this driver as a module, choose M here: the
48 module will be called gspca_cpia1.
57 To compile this driver as a module, choose M here: the
58 module will be called gspca_dtcs033.
66 To compile this driver as a module, choose M here: the
[all …]
/linux/samples/rust/
H A DKconfig19 To compile this as a module, choose M here:
20 the module will be called rust_configfs.
27 This option builds the Rust minimal module sample.
29 To compile this as a module, choose M here:
30 the module will be called rust_minimal.
39 To compile this as a module, choose M here:
40 the module will be called rust_misc_device.
49 To compile this as a module, choose M here:
50 the module will be called rust_print.
60 To compile this as a module, choose M here:
[all …]
/linux/drivers/pwm/
H A DKconfig56 To compile this driver as a module, choose M here: the module
73 To compile this driver as a module, choose M here: the module
85 To compile this driver as a module, choose M here: the module
94 To compile this driver as a module, choose M here: the module
104 To compile this driver as a module, choose M here: the module
116 To compile this driver as a module, choose M here: the module
129 To compile this driver as a module, choose M here: the module
142 To compile this driver as a module, choose M here: the module will be
152 To compile this driver as a module, choose M here: the module
164 To compile this driver as a module, choose M here: the module
[all …]
/linux/drivers/iio/adc/
H A DKconfig22 To compile this driver as a module, choose M here: the module will be
56 To compile this driver as a module, choose M here: the module will be
70 To compile this driver as a module, choose M here: the module will be
84 To compile this driver as a module, choose M here: the module will be
99 To compile this driver as a module, choose M here: the module will be
115 To compile this driver as a module, choose M here: the module will be
130 To compile this driver as a module, choose M here: the module will be
144 To compile this driver as a module, choose M here: the module will be
167 To compile this driver as a module, choose M here: the module will be
178 To compile this driver as a module, choose M here: the module will be
[all …]
/linux/drivers/rtc/
H A DKconfig158 This driver can also be built as a module. If so, the module
172 This driver can also be built as a module. If so, the module
182 This driver can also be built as a module. If so, the module
192 This driver can also be built as a module. If so, the module
202 This driver can also be built as a module. If so, the module
212 This driver can also be built as a module. If so, the module
223 This driver can also be built as a module. If so, the module
233 This driver can also be built as a module. If so, the module
244 This driver can also be built as a module. If so, the module will
254 This driver can also be built as a module. If so, the module
[all …]
/linux/drivers/iio/accel/
H A DKconfig18 To compile this driver as a module, say M here: the module will
30 To compile this driver as a module, say M here: the module will be
45 To compile this driver as a module, choose M here: the module
47 for the core module.
58 To compile this driver as a module, choose M here: the module
60 for the core module.
75 To compile this driver as a module, choose M here: the module
77 for the core module.
89 To compile this driver as a module, choose M here: the module
91 for the core module.
[all …]
/linux/drivers/net/ethernet/mellanox/mlxsw/
H A Dcore_env.h13 u8 slot_index, int module, int off,
18 int module, struct ethtool_modinfo *modinfo);
22 int module, struct ethtool_eeprom *ee,
27 u8 slot_index, u8 module,
33 u8 slot_index, u8 module,
39 u8 module, u32 *flags);
43 u8 module,
49 u8 module,
55 u8 module, u64 *p_counter);
58 u8 module);
[all …]
H A Dcore_env.c60 u8 slot_index, u8 module) in mlxsw_env_module_info_get() argument
64 return &mlxsw_env->line_cards[slot_index]->module_info[module]; in mlxsw_env_module_info_get()
68 u8 slot_index, u8 module) in __mlxsw_env_validate_module_type() argument
77 module_info = mlxsw_env_module_info_get(core, slot_index, module); in __mlxsw_env_validate_module_type()
90 u8 slot_index, u8 module) in mlxsw_env_validate_module_type() argument
96 err = __mlxsw_env_validate_module_type(core, slot_index, module); in mlxsw_env_validate_module_type()
147 int module, u16 offset, u16 size, void *data, in mlxsw_env_query_module_eeprom() argument
189 mlxsw_reg_mcia_pack(mcia_pl, slot_index, module, page, offset, size, in mlxsw_env_query_module_eeprom()
209 int module, int off, int *temp) in mlxsw_env_module_temp_thresholds_get() argument
224 MLXSW_REG_MTMP_MODULE_INDEX_MIN + module, false, in mlxsw_env_module_temp_thresholds_get()
[all …]
/linux/sound/pci/
H A DKconfig21 To compile this as a module, choose M here: the module
33 To compile this driver as a module, choose M here: the module
48 To compile this driver as a module, choose M here: the module
62 To compile this driver as a module, choose M here: the module
74 To compile this driver as a module, choose M here: the module
85 To compile this driver as a module, choose M here: the module
95 To compile this driver as a module, choose M here: the module
110 To compile this driver as a module, choose M here: the module
124 To compile this driver as a module, choose M here: the module
139 To compile this driver as a module, choose M here: the module
[all …]
/linux/drivers/iio/dac/
H A DKconfig17 To compile this driver as a module, choose M here: the
18 module will be called ad3530r.
32 To compile this driver as a module, choose M here: the
33 module will be called ad3552r-hs.
48 To compile this driver as a module, choose M here: the
49 module will be called ad3552r.
62 To compile this driver as a module, choose M here: the
63 module will be called ad5064.
73 To compile this driver as module choose M here: the module will be called
86 To compile this driver as module choose M here: the module will be called
[all …]
/linux/Documentation/ABI/stable/
H A Dsysfs-module1 The /sys/module tree consists of the following structure:
3 What: /sys/module/<MODULENAME>
5 The name of the module that is in the kernel. This
6 module name will always show up if the module is loaded as a
7 dynamic module. If it is built directly into the kernel, it
14 What: /sys/module/<MODULENAME>/parameters
17 individual parameters of the module that are able to be
18 changed at runtime. See the individual module
28 What: /sys/module/<MODULENAME>/refcnt
30 If the module is able to be unloaded from the kernel, this file
[all …]
/linux/arch/riscv/kernel/
H A Dmodule.c37 int (*reloc_handler)(struct module *me, void *location, Elf_Addr v);
38 int (*accumulate_handler)(struct module *me, void *location,
80 static int apply_r_riscv_32_rela(struct module *me, void *location, Elf_Addr v) in apply_r_riscv_32_rela()
91 static int apply_r_riscv_64_rela(struct module *me, void *location, Elf_Addr v) in apply_r_riscv_64_rela()
97 static int apply_r_riscv_branch_rela(struct module *me, void *location, in apply_r_riscv_branch_rela()
109 static int apply_r_riscv_jal_rela(struct module *me, void *location, in apply_r_riscv_jal_rela()
121 static int apply_r_riscv_rvc_branch_rela(struct module *me, void *location, in apply_r_riscv_rvc_branch_rela()
135 static int apply_r_riscv_rvc_jump_rela(struct module *me, void *location, in apply_r_riscv_rvc_jump_rela()
152 static int apply_r_riscv_pcrel_hi20_rela(struct module *me, void *location, in apply_r_riscv_pcrel_hi20_rela()
167 static int apply_r_riscv_pcrel_lo12_i_rela(struct module *me, void *location, in apply_r_riscv_pcrel_lo12_i_rela()
[all …]
/linux/sound/isa/
H A DKconfig39 To compile this driver as a module, choose M here: the module
54 To compile this driver as a module, choose M here: the module
67 To compile this driver as a module, choose M here: the module
82 To compile this driver as a module, choose M here: the module
95 To compile this driver as a module, choose M here: the module
108 To compile this driver as a module, choose M here: the module
122 To compile this driver as a module, choose M here: the module
134 To compile this driver as a module, choose M here: the module
147 To compile this driver as a module, choose M here: the module
158 To compile this driver as a module, choose M here: the module
[all …]
/linux/drivers/input/joystick/
H A DKconfig33 To compile this driver as a module, choose M here: the
34 module will be called analog.
43 To compile this driver as a module, choose M here: the
44 module will be called a3d.
54 To compile this driver as a module, choose M here: the
55 module will be called adc-joystick.
60 depends on ADI!=m # avoid module name conflict
65 To compile this driver as a module, choose M here: the
66 module will be called adi.
74 To compile this driver as a module, choose M here: the
[all …]
/linux/net/sched/
H A DKconfig59 To compile this code as a module, choose M here: the
60 module will be called sch_htb.
68 To compile this code as a module, choose M here: the
69 module will be called sch_hfsc.
77 To compile this code as a module, choose M here: the
78 module will be called sch_prio.
86 To compile this code as a module, choose M here: the
87 module will be called sch_multiq.
97 To compile this code as a module, choose M here: the
98 module will be called sch_red.
[all …]
/linux/drivers/usb/serial/
H A DKconfig18 To compile this driver as a module, choose M here: the
19 module will be called usbserial.
52 support" be compiled as a module for this driver to be used
76 To compile this driver as a module, choose M here: the module
84 To compile this driver as a module, choose M here: the module
93 To compile this driver as a module, choose M here: the
94 module will be called ark3116
103 To compile this driver as a module, choose M here: the
104 module will be called belkin_sa.
112 To compile this driver as a module, choose M here: the
[all …]
/linux/drivers/iio/pressure/
H A DKconfig16 To compile this driver as a module, choose M here: the module
44 To compile this driver as a module, choose M here: the core module
67 To compile this driver as a module, choose M here: the module
79 To compile this driver as a module, choose M here: the module
90 This driver can also be built as a module. If so, the module will be
103 To compile this driver as a module, choose M here: the module
114 To compile this driver as a module, choose M here: the module
128 To compile this driver as a module, choose M here: the module
149 To compile this driver as a module, choose M here: the module
163 To compile this driver as a module, choose M here: the module
[all …]
/linux/drivers/gpib/
H A DKconfig22 To compile this driver as a module, choose M here: the module will be
36 To compile this driver as a module, choose M here: the module will be
46 To compile this driver as a module, choose M here: the module will be
59 To compile this driver as a module, choose M here: the module will be
84 To compile this driver as a module, choose M here: the module will be
100 To compile this driver as a module, choose M here: the module will be
117 To compile this driver as a module, choose M here: the module will be
128 To compile this driver as a module, choose M here: the module will be
140 To compile this driver as a module, choose M here: the module will be
150 To compile this driver as a module, choose M here: the module will be
[all …]

12345678910>>...102