Home
last modified time | relevance | path

Searched refs:mod_name (Results 1 – 25 of 115) sorted by relevance

12345

/Linux-v5.4/scripts/gdb/linux/
Dmodules.py50 def invoke(self, mod_name): argument
51 mod_name = mod_name.string()
52 module = find_module_by_name(mod_name)
56 raise gdb.GdbError("Unable to find MODULE " + mod_name)
/Linux-v5.4/drivers/ide/
Dide-scan-pci.c36 const char *mod_name) in __ide_pci_register_driver() argument
39 return __pci_register_driver(driver, module, mod_name); in __ide_pci_register_driver()
108 d->driver.mod_name)) in ide_scan_pcibus()
110 __func__, d->driver.mod_name); in ide_scan_pcibus()
/Linux-v5.4/drivers/staging/uwb/
Dumc-drv.c12 const char *mod_name) in __umc_driver_register() argument
16 umc_drv->driver.mod_name = mod_name; in __umc_driver_register()
/Linux-v5.4/drivers/edac/
Dedac_pci.c134 rover->mod_name, rover->ctl_name, rover->pci_idx); in add_edac_pci_to_global_list()
234 pci->mod_name, pci->ctl_name, pci->dev_name, in edac_pci_add_device()
277 pci->pci_idx, pci->mod_name, pci->ctl_name, edac_dev_name(pci)); in edac_pci_del_device()
303 const char *mod_name) in edac_pci_create_generic_ctl() argument
317 pci->mod_name = mod_name; in edac_pci_create_generic_ctl()
336 edac_dbg(0, "pci mod=%s\n", pci->mod_name); in edac_pci_release_generic_ctl()
Dedac_pci.h67 const char *mod_name; /* module name */ member
245 const char *mod_name);
Dedac_device.c45 edac_dev->mod_name, edac_dev->ctl_name); in edac_device_dump_device()
305 rover->mod_name, rover->ctl_name, rover->dev_idx); in add_edac_dev_to_global_list()
488 edac_dev->mod_name, edac_dev->ctl_name, edac_dev->dev_name, in edac_device_add_device()
536 edac_dev->mod_name, edac_dev->ctl_name, edac_dev_name(edac_dev)); in edac_device_del_device()
/Linux-v5.4/include/linux/
Dpci_hotplug.h63 const char *mod_name; member
73 const char *mod_name);
76 const char *mod_name);
Dscmi_protocol.h287 struct module *owner, const char *mod_name);
292 const char *mod_name) in scmi_driver_register() argument
/Linux-v5.4/net/netfilter/
Dnf_conntrack_helper.c135 nf_conntrack_nat_helper_find(const char *mod_name) in nf_conntrack_nat_helper_find() argument
141 if (!strcmp(cur->mod_name, mod_name)) { in nf_conntrack_nat_helper_find()
154 char mod_name[NF_CT_HELPER_NAME_LEN]; in nf_nat_helper_try_module_get() local
166 snprintf(mod_name, sizeof(mod_name), "%s", h->nat_mod_name); in nf_nat_helper_try_module_get()
168 request_module(mod_name); in nf_nat_helper_try_module_get()
171 nat = nf_conntrack_nat_helper_find(mod_name); in nf_nat_helper_try_module_get()
/Linux-v5.4/lib/
Ddynamic_debug.c47 const char *mod_name; member
155 !match_wildcard(query->module, dt->mod_name)) in ddebug_change()
203 dt->mod_name, dp->function, in ddebug_change()
831 iter->table->mod_name, dp->function, in ddebug_proc_show()
899 dt->mod_name = name; in ddebug_add_module()
907 vpr_info("%u debug prints in module %s\n", n, dt->mod_name); in ddebug_add_module()
961 int ddebug_remove_module(const char *mod_name) in ddebug_remove_module() argument
966 vpr_info("removing module \"%s\"\n", mod_name); in ddebug_remove_module()
970 if (dt->mod_name == mod_name) { in ddebug_remove_module()
/Linux-v5.4/scripts/
Dnsdeps30 local mod_name=`basename $@ .ko`
38 echo "Adding namespace $ns to module $mod_name (if needed)."
/Linux-v5.4/sound/soc/intel/skylake/
Dskl-sst.c278 char *mod_name, int mod_id) in skl_fill_module_table() argument
285 ret = request_firmware(&fw, mod_name, ctx->dev); in skl_fill_module_table()
288 mod_name, ret); in skl_fill_module_table()
414 char mod_name[64]; /* guid str = 32 chars + 4 hyphens */ in skl_load_module() local
416 snprintf(mod_name, sizeof(mod_name), "intel/dsp_fw_%pUL.bin", guid); in skl_load_module()
420 module_entry = skl_fill_module_table(ctx, mod_name, mod_id); in skl_load_module()
/Linux-v5.4/drivers/base/
Dmodule.c44 else if (drv->mod_name) { in module_add_driver()
48 mkobj = kset_find_obj(module_kset, drv->mod_name); in module_add_driver()
/Linux-v5.4/drivers/firmware/arm_scmi/
Dbus.c99 const char *mod_name) in scmi_driver_register() argument
106 driver->driver.mod_name = mod_name; in scmi_driver_register()
/Linux-v5.4/drivers/pci/hotplug/
Dpci_hotplug_core.c406 struct module *owner, const char *mod_name) in __pci_hp_register() argument
410 result = __pci_hp_initialize(slot, bus, devnr, name, owner, mod_name); in __pci_hp_register()
440 const char *mod_name) in __pci_hp_initialize() argument
450 slot->mod_name = mod_name; in __pci_hp_initialize()
/Linux-v5.4/kernel/debug/kdb/
Dkdb_support.c103 (char **)(&symtab->mod_name), knt1); in kdbnearsym()
148 if (symtab->mod_name == NULL) in kdbnearsym()
149 symtab->mod_name = "kernel"; in kdbnearsym()
153 symtab->sym_start, symtab->mod_name, symtab->sym_name, in kdbnearsym()
279 if (strcmp(symtab_p2->mod_name, "kernel")) in kdb_symbol_print()
280 kdb_printf("[%s]", symtab_p2->mod_name); in kdb_symbol_print()
/Linux-v5.4/include/net/netfilter/
Dnf_conntrack_helper.h165 char mod_name[NF_CT_HELPER_NAME_LEN]; /* module name */ member
171 .mod_name = NF_NAT_HELPER_NAME(name), \
/Linux-v5.4/drivers/greybus/
Dcore.c269 const char *mod_name) in greybus_register_driver() argument
281 driver->driver.mod_name = mod_name; in greybus_register_driver()
/Linux-v5.4/drivers/staging/greybus/
Dgbphy.c196 struct module *owner, const char *mod_name) in gb_gbphy_register_driver() argument
206 driver->driver.mod_name = mod_name; in gb_gbphy_register_driver()
/Linux-v5.4/drivers/xen/xenbus/
Dxenbus_probe_backend.c231 const char *mod_name) in __xenbus_register_backend() argument
236 owner, mod_name); in __xenbus_register_backend()
/Linux-v5.4/include/xen/
Dxenbus.h116 const char *mod_name);
119 const char *mod_name);
/Linux-v5.4/drivers/input/rmi4/
Drmi_bus.c298 const char *mod_name) in __rmi_register_function_handler() argument
305 driver->mod_name = mod_name; in __rmi_register_function_handler()
/Linux-v5.4/drivers/dax/
Dbus.c460 struct module *module, const char *mod_name) in __dax_driver_register() argument
467 drv->name = mod_name; in __dax_driver_register()
468 drv->mod_name = mod_name; in __dax_driver_register()
/Linux-v5.4/drivers/mcb/
Dmcb-core.c183 const char *mod_name) in __mcb_register_driver() argument
190 drv->driver.mod_name = mod_name; in __mcb_register_driver()
/Linux-v5.4/drivers/ntb/
Dcore.c79 const char *mod_name) in __ntb_register_client() argument
88 client->drv.name = mod_name; in __ntb_register_client()

12345