Home
last modified time | relevance | path

Searched refs:mod (Results 1 – 17 of 17) sorted by relevance

/scripts/mod/
Dmodpost.c105 struct module *mod; in find_module() local
107 for (mod = modules; mod; mod = mod->next) in find_module()
108 if (strcmp(mod->name, modname) == 0) in find_module()
110 return mod; in find_module()
115 struct module *mod; in new_module() local
118 mod = NOFAIL(malloc(sizeof(*mod))); in new_module()
119 memset(mod, 0, sizeof(*mod)); in new_module()
129 mod->name = p; in new_module()
130 mod->gpl_compatible = -1; in new_module()
131 mod->next = modules; in new_module()
[all …]
Dfile2alias.c107 struct module *mod) in do_usb_entry() argument
146 buf_printf(&mod->dev_table_buf, in do_usb_entry()
150 static void do_usb_entry_multi(struct usb_device_id *id, struct module *mod) in do_usb_entry_multi() argument
182 do_usb_entry(id, devlo, ndigits, clo, chi, mod); in do_usb_entry_multi()
187 do_usb_entry(id, devlo++, ndigits, clo, 9, mod); in do_usb_entry_multi()
190 do_usb_entry(id, devhi--, ndigits, 0, chi, mod); in do_usb_entry_multi()
195 struct module *mod) in do_usb_table() argument
200 device_id_check(mod->name, "usb", size, id_size, symval); in do_usb_table()
206 do_usb_entry_multi(symval + i, mod); in do_usb_table()
359 struct module *mod) in do_pnp_device_entry() argument
[all …]
Dmodpost.h139 void handle_moddevtable(struct module *mod, struct elf_info *info,
141 void add_moddevtable(struct buffer *buf, struct module *mod);
/scripts/
DMakefile.modpost68 __modules := $(sort $(shell grep -h '\.ko' /dev/null $(wildcard $(MODVERDIR)/*.mod)))
80 modpost = scripts/mod/modpost \
100 quiet_cmd_kernel-mod = MODPOST $@
101 cmd_kernel-mod = $(modpost) $@
105 $(call cmd,kernel-mod)
109 $(modules:.ko=.mod.c): __modpost ;
119 modname = $(notdir $(@:.mod.o=))
125 $(modules:.ko=.mod.o): %.mod.o: %.mod.c FORCE
128 targets += $(modules:.ko=.mod.o)
135 $(modules): %.ko :%.o %.mod.o FORCE
DMakefile.fwinst20 mod-fw := $(fw-shipped-m)
24 mod-fw += $(fw-shipped-y)
27 installed-mod-fw := $(addprefix $(INSTALL_FW_PATH)/,$(mod-fw))
54 __fw_modinst: $(installed-mod-fw)
57 __fw_modbuild: $(addprefix $(obj)/,$(mod-fw))
DMakefile.modinst12 __modules := $(sort $(shell grep -h '\.ko' /dev/null $(wildcard $(MODVERDIR)/*.mod)))
24 ext-mod-dir = $(INSTALL_MOD_DIR)$(subst $(patsubst %/,%,$(KBUILD_EXTMOD)),,$(@D))
26 modinst_dir = $(if $(KBUILD_EXTMOD),$(ext-mod-dir),kernel/$(@D))
Dexport_report.pl28 while (my ($mod, $list) = each %$href) {
29 print "\t$mod:\n";
DMakefile23 subdir-y += mod
Dmarkup_oops.pl188 my $mod = $module . ".ko";
189 my $modulefile = `find $dir -name $mod | head -1`;
DMakefile.build108 cmd_secanalysis = ; scripts/mod/modpost $@
232 @{ echo $(@:.o=.ko); echo $@; } > $(MODVERDIR)/$(@F:.o=.mod)
349 @{ echo $(@:.o=.ko); echo $(link_multi_deps); } > $(MODVERDIR)/$(@F:.o=.mod)
/scripts/kconfig/
Dconf.c173 case mod: in conf_sym()
182 if (oldval != mod && sym_tristate_within_range(sym, mod)) in conf_sym()
202 newval = mod; in conf_sym()
243 case mod: in conf_choice()
252 case mod: in conf_choice()
384 if (sym->curr.tri != mod) in conf()
Dsymbol.c21 .curr = { "m", mod },
200 if (tri == mod && (sym->type != S_TRISTATE || modules_val == no)) in sym_calc_visibility()
211 if (tri == mod && sym_get_type(sym) == S_BOOLEAN) in sym_calc_visibility()
326 if (newval.tri == mod && sym_get_type(sym) == S_BOOLEAN) in sym_calc_value()
424 if (type == S_BOOLEAN && val == mod) in sym_tristate_within_range()
477 newval = mod; in sym_toggle_tristate_value()
479 case mod: in sym_toggle_tristate_value()
567 return sym_tristate_within_range(sym, mod); in sym_string_within_range()
590 return sym_set_tristate_value(sym, mod); in sym_set_string_value()
637 case mod: in sym_get_string_value()
Dmconf.c490 case mod: ch = 'M'; break; in build_conf()
543 case mod: ch = 'M'; break; in build_conf()
547 if (sym->rev_dep.tri == mod) in build_conf()
663 if (sym_set_tristate_value(sym, mod)) in conf()
673 sym_set_tristate_value(sym, mod); in conf()
Dconfdata.c93 sym->def[def].tri = mod; in conf_set_sym_val()
291 case mod: in conf_read_simple()
487 case mod: in conf_write()
722 case mod: in conf_write_autoconf()
835 sym->def[S_DEF_USER].tri = mod; in conf_set_all_new_symbols()
Dqconf.cc168 case mod: in updateMenu()
184 if (expr != mod) in updateMenu()
185 setText(modColIdx, sym_tristate_within_range(sym, mod) ? "_" : 0); in updateMenu()
677 setValue(item, mod); in keyPressEvent()
736 setValue(item, mod); in contentsMouseReleaseEvent()
1003 str += sym->visible == yes ? "y" : sym->visible == mod ? "m" : "n"; in symbolInfo()
Dexpr.h30 no, mod, yes enumerator
Dgconf.c911 newval = mod; in change_sym_value()
1247 case mod: in fill_row()
1262 if (val != mod && sym_tristate_within_range(sym, mod)) in fill_row()