Home
last modified time | relevance | path

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

12345678910>>...125

/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_codec.c22 find_data(struct gbaudio_module_info *module, int id) in find_data() argument
26 list_for_each_entry(data, &module->data_list, list) { in find_data()
46 struct gbaudio_module_info *module, int id) in gbaudio_module_enable_tx() argument
56 data = find_data(module, id); in gbaudio_module_enable_tx()
58 dev_err(module->dev, "%d:DATA connection missing\n", id); in gbaudio_module_enable_tx()
77 dev_err_ratelimited(module->dev, "reg_cport failed:%d\n", ret); in gbaudio_module_enable_tx()
81 dev_dbg(module->dev, "Dynamic Register %d DAI\n", cportid); in gbaudio_module_enable_tx()
91 ret = gb_audio_gb_set_pcm(module->mgmt_connection, data_cport, in gbaudio_module_enable_tx()
94 dev_err_ratelimited(module->dev, "set_pcm failed:%d\n", ret); in gbaudio_module_enable_tx()
98 dev_dbg(module->dev, "Dynamic hw_params %d DAI\n", data_cport); in gbaudio_module_enable_tx()
[all …]
H A Daudio_topology.c26 struct gbaudio_module_info *module; in find_gb_module() local
37 list_for_each_entry(module, &codec->module_list, list) { in find_gb_module()
38 if (module->dev_id == dev_id) { in find_gb_module()
40 return module; in find_gb_module()
49 static const char *gbaudio_map_controlid(struct gbaudio_module_info *module, in gbaudio_map_controlid() argument
57 list_for_each_entry(control, &module->ctl_list, list) { in gbaudio_map_controlid()
66 list_for_each_entry(control, &module->widget_ctl_list, list) { in gbaudio_map_controlid()
78 static int gbaudio_map_controlname(struct gbaudio_module_info *module, in gbaudio_map_controlname() argument
83 list_for_each_entry(control, &module->ctl_list, list) { in gbaudio_map_controlname()
88 dev_warn(module->dev, "%s: missing in modules controls list\n", name); in gbaudio_map_controlname()
[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.h64 struct module *mod;
99 struct module *owner;
106 int try_to_force_load(struct module *mod, const char *reason);
108 struct module *find_module_all(const char *name, size_t len, bool even_unformed);
110 long module_get_offset_and_type(struct module *mod, enum mod_mem_type type,
112 char *module_flags(struct module *mod, char *buf, bool show_state);
141 int copy_module_elf(struct module *mod, struct load_info *info);
142 void free_module_elf(struct module *mod);
144 static inline int copy_module_elf(struct module *mod, struct load_info *info) in copy_module_elf()
149 static inline void free_module_elf(struct module *mod) { } in free_module_elf()
[all …]
/linux/include/linux/
H A Dmodule.h42 struct module;
47 struct module *mod;
59 void (*setup)(struct module *, const char *);
60 int (*test)(struct module *);
61 void (*free)(struct module *);
315 struct module *source, *target;
326 struct module *mod;
408 struct module { struct
611 static inline bool module_is_live(struct module *mod) in module_is_live()
616 static inline bool module_is_coming(struct module *mod) in module_is_coming()
[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/comedi/
H A DKconfig54 To compile this driver as a module, choose M here: the module will be
65 To compile this driver as a module, choose M here: the module will be
77 To compile this driver as a module, choose M here: the module will be
87 To compile this driver as a module, choose M here: the module will be
111 To compile this driver as a module, choose M here: the module will be
132 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
163 To compile this driver as a module, choose M here: the module will be
175 To compile this driver as a module, choose M here: the module will be
185 To compile this driver as a module, choose M here: the module will be
[all …]
/linux/drivers/hwmon/pmbus/
H A DKconfig12 This driver can also be built as a module. If so, the module will
27 This driver can also be built as a module. If so, the module will
36 This driver can also be built as a module. If so, the module will
47 This driver can also be built as a module. If so, the module will
57 This driver can also be built as a module. If so, the module will
67 This driver can also be built as a module. If so, the module will
76 This driver can also be built as a module. If so, the module will
85 This driver can also be built as a module. If so, the module will
89 tristate "Delta AHE-50DC fan control module"
92 the integrated fan control module of the Delta AHE-50DC
[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/drivers/media/i2c/
H A DKconfig12 tristate "I2C module for IR" if !MEDIA_SUBDRV_AUTOSELECT || EXPERT
51 To compile this driver as a module, choose M here: the
52 module will be called alvium-csi2.
60 To compile this driver as a module, choose M here: the
61 module will be called ar0521.
70 To compile this driver as a module, choose M here: the
71 module will be called gc0308.
80 To compile this driver as a module, choose M here: the
81 module will be called gc05a2.
90 To compile this driver as a module, choose M here: the
[all …]
/linux/drivers/input/misc/
H A DKconfig23 To compile this driver as a module, choose M here: the module
33 To compile this driver as a module, choose M here: the module
50 To compile this driver as a module, choose M here: the module
60 To compile this driver as a module, choose M here: the
61 module will be called ad714x.
70 To compile this driver as a module, choose M here: the
71 module will be called ad714x-i2c.
80 To compile this driver as a module, choose M here: the
81 module will be called ad714x-spi.
91 To compile this driver as a module, choose M here: the module
[all …]
/linux/drivers/input/touchscreen/
H A DKconfig24 To compile this driver as a module, choose M here: the
25 module will be called 88pm860x-ts.
43 To compile this driver as a module, choose M here: the
44 module will be called ads7846.
56 To compile this driver as a module, choose M here: the
57 module will be called ad7877.
67 To compile this driver as a module, choose M here: the
68 module will be called ad7879.
77 To compile this driver as a module, choose M here: the
78 module will be called ad7879-i2c.
[all …]
/linux/drivers/pwm/
H A DKconfig47 To compile this driver as a module, choose M here: the module
66 To compile this driver as a module, choose M here: the module
76 To compile this driver as a module, choose M here: the module
88 To compile this driver as a module, choose M here: the module
101 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 will be
126 To compile this driver as a module, choose M here: the module
137 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
157 To compile this driver as a module, choose M here: the 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 …]
/linux/drivers/md/dm-vdo/
H A Dlogger.c110 static void emit_log_message(int priority, const char *module, const char *prefix, in emit_log_message() argument
122 emit_log_message_to_kernel(priority, "%s[%s]: %s%pV%pV\n", module, type, in emit_log_message()
130 emit_log_message_to_kernel(priority, "%s%u:%s: %s%pV%pV\n", module, in emit_log_message()
141 (strncmp(module, current->comm, strlen(module)) == 0)) { in emit_log_message()
148 emit_log_message_to_kernel(priority, "%s: %s: %s%pV%pV\n", module, current->comm, in emit_log_message()
161 void vdo_log_embedded_message(int priority, const char *module, const char *prefix, in vdo_log_embedded_message() argument
170 if (module == NULL) in vdo_log_embedded_message()
171 module = VDO_LOGGING_MODULE_NAME; in vdo_log_embedded_message()
188 emit_log_message(priority, module, prefix, &vaf1, &vaf2); in vdo_log_embedded_message()
194 int vdo_vlog_strerror(int priority, int errnum, const char *module, const char *format, in vdo_vlog_strerror() argument
[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/drivers/iio/adc/
H A DKconfig33 To compile this driver as a module, choose M here: the module will be
48 To compile this driver as a module, choose M here: the module will be
61 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
95 To compile this driver as a module, choose M here: the module will be
112 To compile this driver as a module, choose M here: the module will be
129 To compile this driver as a module, choose M here: the
130 module will be called ad7192.
142 To compile this driver as a module, choose M here: the module will be
153 To compile this driver as a module, choose M here: the
[all …]
/linux/drivers/iio/temperature/
H A DKconfig14 To compile this driver as a module, choose M here: the module
25 To compile this driver as a module, choose M here: the module
41 This driver can also be built as a module. If so, the module will
54 To compile this driver as a module, choose M here: the module
64 This driver can also be built as a module. If so, the module will
76 This driver can also be built as a module. If so, the module will
88 This driver can also be built as a module. If so, the module will
98 This driver can also be built as a module. If so, the module will
108 This driver can also be built as a module. If so, the module will
118 This driver can also be built as a module. If so, the module will
[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/input/keyboard/
H A DKconfig27 To compile this driver as a module, choose M here: the
28 module will be called adc_keys.
37 To compile this driver as a module, choose M here: the module will
50 To compile this driver as a module, choose M here: the
51 module will be called adp5588-keys.
60 To compile this driver as a module, choose M here: the
61 module will be called adp5589-keys.
70 To compile this driver as a module, choose M here: the
71 module will be called amikbd.
88 To compile this driver as a module, choose M here: the
[all …]
/linux/drivers/iio/dac/
H A DKconfig18 To compile this driver as a module, choose M here: the
19 module will be called ad3552r.
32 To compile this driver as a module, choose M here: the
33 module will be called ad5064.
43 To compile this driver as module choose M here: the module will be called
56 To compile this driver as module choose M here: the module will be called
66 To compile this driver as module choose M here: the module will be called
79 To compile this driver as a module, choose M here: the
80 module will be called ad5446.
89 To compile this driver as a module, choose M here: the
[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 …]

12345678910>>...125