/kernel/linux/linux-5.10/drivers/greybus/ |
D | module.c | 16 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 …]
|
/kernel/linux/linux-5.10/drivers/staging/greybus/ |
D | audio_manager.c | 27 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 …]
|
D | audio_manager_module.c | 20 ssize_t (*show)(struct gb_audio_manager_module *module, 23 ssize_t (*store)(struct gb_audio_manager_module *module, 32 struct gb_audio_manager_module *module; in gb_audio_module_attr_show() local 35 module = to_gb_audio_module(kobj); in gb_audio_module_attr_show() 40 return attribute->show(module, attribute, buf); in gb_audio_module_attr_show() 48 struct gb_audio_manager_module *module; in gb_audio_module_attr_store() local 51 module = to_gb_audio_module(kobj); in gb_audio_module_attr_store() 56 return attribute->store(module, attribute, buf, len); in gb_audio_module_attr_store() 66 struct gb_audio_manager_module *module = to_gb_audio_module(kobj); in gb_audio_module_release() local 68 pr_info("Destroying audio module #%d\n", module->id); in gb_audio_module_release() [all …]
|
D | audio_codec.c | 22 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, in gbaudio_module_enable_tx() 83 dev_dbg(module->dev, "Dynamic Register %d DAI\n", cportid); in gbaudio_module_enable_tx() 93 ret = gb_audio_gb_set_pcm(module->mgmt_connection, data_cport, in gbaudio_module_enable_tx() 96 dev_err_ratelimited(module->dev, "set_pcm failed:%d\n", in gbaudio_module_enable_tx() 102 dev_dbg(module->dev, "Dynamic hw_params %d DAI\n", data_cport); in gbaudio_module_enable_tx() [all …]
|
D | audio_topology.c | 33 struct gbaudio_module_info *module; in find_gb_module() local 44 list_for_each_entry(module, &codec->module_list, list) { in find_gb_module() 45 if (module->dev_id == dev_id) { in find_gb_module() 47 return module; in find_gb_module() 56 static const char *gbaudio_map_controlid(struct gbaudio_module_info *module, in gbaudio_map_controlid() argument 64 list_for_each_entry(control, &module->ctl_list, list) { in gbaudio_map_controlid() 73 list_for_each_entry(control, &module->widget_ctl_list, list) { in gbaudio_map_controlid() 85 static int gbaudio_map_controlname(struct gbaudio_module_info *module, in gbaudio_map_controlname() argument 90 list_for_each_entry(control, &module->ctl_list, list) { in gbaudio_map_controlname() 95 dev_warn(module->dev, "%s: missing in modules controls list\n", name); in gbaudio_map_controlname() [all …]
|
D | audio_module.c | 20 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 …]
|
D | Kconfig | 11 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 …]
|
/kernel/linux/linux-5.10/include/linux/ |
D | module.h | 44 struct module; 49 struct module *mod; 61 void (*setup)(struct module *, const char *); 62 int (*test)(struct module *); 63 void (*free)(struct module *); 311 struct module *source, *target; 322 struct module *mod; 366 struct module { struct 563 static inline bool module_is_live(struct module *mod) in module_is_live() 568 struct module *__module_text_address(unsigned long addr); [all …]
|
/kernel/linux/linux-5.10/drivers/staging/blackbox/ |
D | blackbox_core.c | 48 const char *module; member 105 static const char *get_top_category(const char *module, const char *event); 106 static const char *get_category(const char *module, const char *event); 116 const char module[MODULE_MAX_LEN], 124 static const char *get_top_category(const char *module, const char *event) in get_top_category() argument 129 if (unlikely(!module || !event)) { in get_top_category() 130 bbox_print_err("module: %p, event: %p\n", module, event); in get_top_category() 135 if (!strcmp(error_info_categories[i].module, module) && in get_top_category() 139 if (!strcmp(module, MODULE_SYSTEM)) in get_top_category() 145 static const char *get_category(const char *module, const char *event) in get_category() argument [all …]
|
/kernel/linux/linux-5.10/sound/soc/intel/skylake/ |
D | skl-sst-utils.c | 90 static int skl_get_pvtid_map(struct uuid_module *module, int instance_id) in skl_get_pvtid_map() argument 94 for (pvt_id = 0; pvt_id < module->max_instance; pvt_id++) { in skl_get_pvtid_map() 95 if (module->instance_id[pvt_id] == instance_id) in skl_get_pvtid_map() 104 struct uuid_module *module; in skl_get_pvt_instance_id_map() local 106 list_for_each_entry(module, &skl->uuid_list, list) { in skl_get_pvt_instance_id_map() 107 if (module->id == module_id) in skl_get_pvt_instance_id_map() 108 return skl_get_pvtid_map(module, instance_id); in skl_get_pvt_instance_id_map() 115 static inline int skl_getid_32(struct uuid_module *module, u64 *val, in skl_getid_32() argument 121 max_inst = module->max_instance; in skl_getid_32() 136 static inline int skl_pvtid_128(struct uuid_module *module) in skl_pvtid_128() argument [all …]
|
/kernel/liteos_a/kernel/extended/blackbox/ |
D | los_blackbox_core.c | 74 const char module[MODULE_MAX_LEN], in FormatErrorInfo() 77 if (info == NULL || event == NULL || module == NULL || errorDesc == NULL) { in FormatErrorInfo() 78 …BBOX_PRINT_ERR("info: %p, event: %p, module: %p, errorDesc: %p!\n", info, event, module, errorDesc… in FormatErrorInfo() 86 …if (strncpy_s(info->module, sizeof(info->module), module, Min(strlen(module), sizeof(info->module)… in FormatErrorInfo() 127 if (*ops != NULL && strcmp((*ops)->ops.module, info->module) == 0) { in FindModuleOps() 133 BBOX_PRINT_ERR("[%s] hasn't been registered!\n", info->module); in FindModuleOps() 147 BBOX_PRINT_INFO("[%s] starts dumping log!\n", ops->ops.module); in InvokeModuleOps() 149 BBOX_PRINT_INFO("[%s] ends dumping log!\n", ops->ops.module); in InvokeModuleOps() 152 BBOX_PRINT_INFO("[%s] starts resetting!\n", ops->ops.module); in InvokeModuleOps() 154 BBOX_PRINT_INFO("[%s] ends resetting!\n", ops->ops.module); in InvokeModuleOps() [all …]
|
/kernel/linux/linux-5.10/scripts/ |
D | decode_stacktrace.sh | 75 if [[ $module == "" ]] ; then 77 elif [[ "${modcache[$module]+isset}" == "isset" ]]; then 78 local objfile=${modcache[$module]} 85 modcache[$module]=$objfile 105 if [[ "${cache[$module,$name]+isset}" == "isset" ]]; then 106 local base_addr=${cache[$module,$name]} 113 cache[$module,$name]="$base_addr" 129 if [[ "${cache[$module,$address]+isset}" == "isset" ]]; then 130 local code=${cache[$module,$address]} 133 cache[$module,$address]=$code [all …]
|
/kernel/linux/linux-5.10/drivers/staging/comedi/ |
D | Kconfig | 54 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 76 To compile this driver as a module, choose M here: the module will be 85 To compile this driver as a module, choose M here: the module will be 107 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 136 To compile this driver as a module, choose M here: the module will be 159 To compile this driver as a module, choose M here: the module will be 171 To compile this driver as a module, choose M here: the module will be 181 To compile this driver as a module, choose M here: the module will be [all …]
|
/kernel/linux/linux-5.10/drivers/media/usb/gspca/ |
D | Kconfig | 18 module will be called gspca_main. 33 To compile this driver as a module, choose M here: the 34 module will be called gspca_benq. 42 To compile this driver as a module, choose M here: the 43 module will be called gspca_conex. 53 To compile this driver as a module, choose M here: the 54 module will be called gspca_cpia1. 63 To compile this driver as a module, choose M here: the 64 module will be called gspca_dtcs033. 72 To compile this driver as a module, choose M here: the [all …]
|
/kernel/linux/linux-5.10/drivers/pwm/ |
D | Kconfig | 51 To compile this driver as a module, choose M here: the module 61 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 97 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 117 To compile this driver as a module, choose M here: the module 126 To compile this driver as a module, choose M here: the module 136 To compile this driver as a module, choose M Here: the module 146 To compile this driver as a module, choose M here: the module [all …]
|
/kernel/linux/linux-5.10/drivers/hwmon/pmbus/ |
D | Kconfig | 12 This driver can also be built as a module. If so, the module will 26 This driver can also be built as a module. If so, the module will 37 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 56 This driver can also be built as a module. If so, the module will 66 This driver can also be built as a module. If so, the module will 75 This driver can also be built as a module. If so, the module will 84 This driver can also be built as a module. If so, the module will 93 This driver can also be built as a module. If so, the module will 102 This driver can also be built as a module. If so, the module will [all …]
|
/kernel/linux/linux-5.10/scripts/gdb/linux/ |
D | modules.py | 30 for module in lists.list_for_each_entry(modules, module_ptr_type, "list"): 31 yield module 35 for module in module_list(): 36 if module['name'].string() == name: 37 return module 52 module = find_module_by_name(mod_name) 53 if module: 54 return module.dereference() 75 for module in module_list(): 76 layout = module['core_layout'] [all …]
|
/kernel/linux/linux-5.10/drivers/input/misc/ |
D | Kconfig | 23 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 43 To compile this driver as a module, choose M here: the module 53 To compile this driver as a module, choose M here: the 54 module will be called ad714x. 63 To compile this driver as a module, choose M here: the 64 module will be called ad714x-i2c. 73 To compile this driver as a module, choose M here: the 74 module will be called ad714x-spi. 81 Say Y to enable support for the haptics module in Arizona CODECs. [all …]
|
/kernel/linux/linux-5.10/drivers/input/touchscreen/ |
D | Kconfig | 28 To compile this driver as a module, choose M here: the 29 module will be called 88pm860x-ts. 47 To compile this driver as a module, choose M here: the 48 module will be called ads7846. 60 To compile this driver as a module, choose M here: the 61 module will be called ad7877. 71 To compile this driver as a module, choose M here: the 72 module will be called ad7879. 81 To compile this driver as a module, choose M here: the 82 module will be called ad7879-i2c. [all …]
|
/kernel/linux/linux-5.10/drivers/hwmon/ |
D | Kconfig | 23 This support can also be built as a module. If so, the module 51 This driver can also be built as a module. If so, the module 66 This driver can also be built as a module. If so, the module 80 This driver can also be built as a module. If so, the module 90 This driver can also be built as a module. If so, the module 100 This driver can also be built as a module. If so, the module 110 This driver can also be built as a module. If so, the module 121 This driver can also be built as a module. If so, the module 132 This driver can also be built as a module. If so, the module 143 This driver can also be built as a module. If so, the module [all …]
|
/kernel/linux/linux-5.10/drivers/input/keyboard/ |
D | Kconfig | 27 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 47 To compile this driver as a module, choose M here: the 48 module will be called adp5588-keys. 57 To compile this driver as a module, choose M here: the 58 module will be called adp5589-keys. 67 To compile this driver as a module, choose M here: the 68 module will be called amikbd. 85 To compile this driver as a module, choose M here: the [all …]
|
/kernel/linux/linux-5.10/drivers/iio/adc/ |
D | Kconfig | 39 To compile this driver as a module, choose M here: the module will be 51 To compile this driver as a module, choose M here: the 52 module will be called ad7192. 64 To compile this driver as a module, choose M here: the module will be 74 To compile this driver as a module, choose M here: the 75 module will be called ad7291. 84 To compile this driver as a module, choose M here: the 85 module will be called ad7292. 96 To compile this driver as a module, choose M here: the 97 module will be called ad7298. [all …]
|
/kernel/linux/linux-5.10/sound/pci/ |
D | Kconfig | 21 To compile this as a module, choose M here: the module 33 To compile this driver as a module, choose M here: the module 47 To compile this driver as a module, choose M here: the module 61 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 84 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 108 To compile this driver as a module, choose M here: the module 121 To compile this driver as a module, choose M here: the module 135 To compile this driver as a module, choose M here: the module [all …]
|
/kernel/linux/linux-5.10/drivers/media/i2c/ |
D | Kconfig | 12 tristate "I2C module for IR" if !MEDIA_SUBDRV_AUTOSELECT || EXPERT 31 # Encoder / Decoder module configuration 46 To compile this driver as a module, choose M here: the 47 module will be called tvaudio. 55 To compile this driver as a module, choose M here: the 56 module will be called tda7432. 64 To compile this driver as a module, choose M here: the 65 module will be called tda9840. 79 To compile this driver as a module, choose M here: the 80 module will be called tda1997x. [all …]
|
/kernel/linux/linux-5.10/arch/nds32/kernel/ |
D | module.c | 17 void module_free(struct module *module, void *region) in module_free() argument 24 char *secstrings, struct module *mod) in module_frob_arch_sections() 90 struct module *module, Elf32_Rela * rel, in exceed_limit() argument 98 module->name, ELF32_R_TYPE(rel->r_info)); in exceed_limit() 115 struct module *module) in apply_relocate_add() argument 132 pr_err("%s: bad relocation\n", module->name); in apply_relocate_add() 141 pr_err("%s: out of bounds relocation\n", module->name); in apply_relocate_add() 204 ((v - (Elf32_Addr) loc), 0x000000ff, module, rel, in apply_relocate_add() 213 ((v - (Elf32_Addr) loc), 0x00003fff, module, rel, in apply_relocate_add() 222 ((v - (Elf32_Addr) loc), 0x0000ffff, module, rel, in apply_relocate_add() [all …]
|