/linux-4.1.27/drivers/net/can/ |
D | janz-ican3.c | 266 static inline void ican3_set_page(struct ican3_dev *mod, unsigned int page) in ican3_set_page() argument 269 iowrite8(page, &mod->dpmctrl->window_address); in ican3_set_page() 283 static int ican3_old_recv_msg(struct ican3_dev *mod, struct ican3_msg *msg) in ican3_old_recv_msg() argument 289 ican3_set_page(mod, QUEUE_OLD_CONTROL); in ican3_old_recv_msg() 290 peer = ioread8(mod->dpm + MSYNC_PEER); in ican3_old_recv_msg() 291 locl = ioread8(mod->dpm + MSYNC_LOCL); in ican3_old_recv_msg() 295 netdev_dbg(mod->ndev, "no mbox for reading\n"); in ican3_old_recv_msg() 307 ican3_set_page(mod, mbox_page); in ican3_old_recv_msg() 308 memcpy_fromio(msg, mod->dpm, sizeof(*msg)); in ican3_old_recv_msg() 316 ican3_set_page(mod, QUEUE_OLD_CONTROL); in ican3_old_recv_msg() [all …]
|
/linux-4.1.27/kernel/ |
D | module.c | 185 unsigned int sym, str, mod, vers, info, pcpu; member 191 static inline int strong_try_module_get(struct module *mod) in strong_try_module_get() argument 193 BUG_ON(mod && mod->state == MODULE_STATE_UNFORMED); in strong_try_module_get() 194 if (mod && mod->state == MODULE_STATE_COMING) in strong_try_module_get() 196 if (try_module_get(mod)) in strong_try_module_get() 202 static inline void add_taint_module(struct module *mod, unsigned flag, in add_taint_module() argument 206 mod->taints |= (1U << flag); in add_taint_module() 213 void __module_put_and_exit(struct module *mod, long code) in __module_put_and_exit() argument 215 module_put(mod); in __module_put_and_exit() 304 struct module *mod; in each_symbol_section() local [all …]
|
D | jump_label.c | 228 struct module *mod; member 233 struct module *mod; in __jump_label_mod_text_reserved() local 235 mod = __module_text_address((unsigned long)start); in __jump_label_mod_text_reserved() 236 if (!mod) in __jump_label_mod_text_reserved() 239 WARN_ON_ONCE(__module_text_address((unsigned long)end) != mod); in __jump_label_mod_text_reserved() 241 return __jump_label_text_reserved(mod->jump_entries, in __jump_label_mod_text_reserved() 242 mod->jump_entries + mod->num_jump_entries, in __jump_label_mod_text_reserved() 248 struct static_key_mod *mod = key->next; in __jump_label_mod_update() local 250 while (mod) { in __jump_label_mod_update() 251 struct module *m = mod->mod; in __jump_label_mod_update() [all …]
|
D | tracepoint.c | 287 bool trace_module_has_bad_taint(struct module *mod) in trace_module_has_bad_taint() argument 289 return mod->taints & ~((1 << TAINT_OOT_MODULE) | (1 << TAINT_CRAP) | in trace_module_has_bad_taint() 361 static int tracepoint_module_coming(struct module *mod) in tracepoint_module_coming() argument 366 if (!mod->num_tracepoints) in tracepoint_module_coming() 374 if (trace_module_has_bad_taint(mod)) in tracepoint_module_coming() 382 tp_mod->mod = mod; in tracepoint_module_coming() 391 static void tracepoint_module_going(struct module *mod) in tracepoint_module_going() argument 395 if (!mod->num_tracepoints) in tracepoint_module_going() 400 if (tp_mod->mod == mod) { in tracepoint_module_going() 409 tp_module_going_check_quiescent(mod->tracepoints_ptrs, in tracepoint_module_going() [all …]
|
D | cpu.c | 326 unsigned long mod; member 341 cpu_notify(CPU_DYING | param->mod, param->hcpu); in take_cpu_down() 354 unsigned long mod = tasks_frozen ? CPU_TASKS_FROZEN : 0; in _cpu_down() local 356 .mod = mod, in _cpu_down() 368 err = __cpu_notify(CPU_DOWN_PREPARE | mod, hcpu, -1, &nr_calls); in _cpu_down() 371 __cpu_notify(CPU_DOWN_FAILED | mod, hcpu, nr_calls, NULL); in _cpu_down() 402 cpu_notify_nofail(CPU_DOWN_FAILED | mod, hcpu); in _cpu_down() 425 cpu_notify_nofail(CPU_DEAD | mod, hcpu); in _cpu_down() 432 cpu_notify_nofail(CPU_POST_DEAD | mod, hcpu); in _cpu_down() 492 unsigned long mod = tasks_frozen ? CPU_TASKS_FROZEN : 0; in _cpu_up() local [all …]
|
D | module_signing.c | 44 const void *mod, in mod_make_digest() argument 85 ret = crypto_shash_finup(desc, mod, modlen, pks->digest); in mod_make_digest() 187 int mod_verify_sig(const void *mod, unsigned long *_modlen) in mod_verify_sig() argument 201 memcpy(&ms, mod + (modlen - sizeof(ms)), sizeof(ms)); in mod_verify_sig() 213 sig = mod + modlen; in mod_verify_sig() 229 pks = mod_make_digest(ms.hash, mod, modlen); in mod_verify_sig()
|
D | params.c | 683 int module_param_sysfs_setup(struct module *mod, in module_param_sysfs_setup() argument 693 err = add_sysfs_param(&mod->mkobj, &kparam[i], kparam[i].name); in module_param_sysfs_setup() 695 free_module_param_attrs(&mod->mkobj); in module_param_sysfs_setup() 705 err = sysfs_create_group(&mod->mkobj.kobj, &mod->mkobj.mp->grp); in module_param_sysfs_setup() 707 free_module_param_attrs(&mod->mkobj); in module_param_sysfs_setup() 718 void module_param_sysfs_remove(struct module *mod) in module_param_sysfs_remove() argument 720 if (mod->mkobj.mp) { in module_param_sysfs_remove() 721 sysfs_remove_group(&mod->mkobj.kobj, &mod->mkobj.mp->grp); in module_param_sysfs_remove() 724 free_module_param_attrs(&mod->mkobj); in module_param_sysfs_remove() 751 mk->mod = THIS_MODULE; in locate_module_kobject()
|
D | module-internal.h | 12 extern int mod_verify_sig(const void *mod, unsigned long *_modlen);
|
/linux-4.1.27/sound/soc/sh/rcar/ |
D | src.c | 24 struct rsnd_mod mod; member 38 container_of((_mod), struct rsnd_src, mod) 120 static struct dma_chan *rsnd_src_dma_req(struct rsnd_mod *mod) in rsnd_src_dma_req() argument 122 struct rsnd_priv *priv = rsnd_mod_to_priv(mod); in rsnd_src_dma_req() 123 struct rsnd_dai_stream *io = rsnd_mod_to_io(mod); in rsnd_src_dma_req() 127 mod, in rsnd_src_dma_req() 240 struct rsnd_mod *mod = &src->mod; in rsnd_src_convert_rate() local 241 struct rsnd_dai_stream *io = rsnd_mod_to_io(mod); in rsnd_src_convert_rate() 286 static int rsnd_src_set_convert_rate(struct rsnd_mod *mod) in rsnd_src_set_convert_rate() argument 288 struct rsnd_dai_stream *io = rsnd_mod_to_io(mod); in rsnd_src_set_convert_rate() [all …]
|
D | ssi.c | 65 struct rsnd_mod mod; member 80 #define rsnd_mod_to_ssi(_mod) container_of((_mod), struct rsnd_ssi, mod) 89 int rsnd_ssi_use_busif(struct rsnd_mod *mod) in rsnd_ssi_use_busif() argument 91 struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod); in rsnd_ssi_use_busif() 92 struct rsnd_dai_stream *io = rsnd_mod_to_io(mod); in rsnd_ssi_use_busif() 95 if (!rsnd_ssi_is_dma_mode(mod)) in rsnd_ssi_use_busif() 106 static void rsnd_ssi_status_check(struct rsnd_mod *mod, in rsnd_ssi_status_check() argument 109 struct rsnd_priv *priv = rsnd_mod_to_priv(mod); in rsnd_ssi_status_check() 115 status = rsnd_mod_read(mod, SSISR); in rsnd_ssi_status_check() 155 ret = rsnd_adg_ssi_clk_try_start(&ssi->mod, main_rate); in rsnd_ssi_master_clk_start() [all …]
|
D | adg.c | 37 struct rsnd_mod *mod = rsnd_io_to_mod_ssi(io); in rsnd_adg_ssi_ws_timing_gen2() local 38 struct rsnd_priv *priv = rsnd_mod_to_priv(mod); in rsnd_adg_ssi_ws_timing_gen2() 39 int id = rsnd_mod_id(mod); in rsnd_adg_ssi_ws_timing_gen2() 60 int rsnd_adg_set_cmd_timsel_gen2(struct rsnd_mod *mod, in rsnd_adg_set_cmd_timsel_gen2() argument 63 int id = rsnd_mod_id(mod); in rsnd_adg_set_cmd_timsel_gen2() 72 rsnd_mod_bset(mod, CMDOUT_TIMSEL, mask, val); in rsnd_adg_set_cmd_timsel_gen2() 77 static int rsnd_adg_set_src_timsel_gen2(struct rsnd_mod *mod, in rsnd_adg_set_src_timsel_gen2() argument 82 int id = rsnd_mod_id(mod); in rsnd_adg_set_src_timsel_gen2() 98 rsnd_mod_bset(mod, SRCIN_TIMSEL0, mask, in); in rsnd_adg_set_src_timsel_gen2() 99 rsnd_mod_bset(mod, SRCOUT_TIMSEL0, mask, out); in rsnd_adg_set_src_timsel_gen2() [all …]
|
D | rsnd.h | 163 u32 rsnd_read(struct rsnd_priv *priv, struct rsnd_mod *mod, enum rsnd_reg reg); 164 void rsnd_write(struct rsnd_priv *priv, struct rsnd_mod *mod, 166 void rsnd_bset(struct rsnd_priv *priv, struct rsnd_mod *mod, enum rsnd_reg reg, 168 u32 rsnd_get_adinr(struct rsnd_mod *mod); 211 struct rsnd_mod *mod, char *name); 227 struct dma_chan* (*dma_req)(struct rsnd_mod *mod); 228 int (*probe)(struct rsnd_mod *mod, 230 int (*remove)(struct rsnd_mod *mod, 232 int (*init)(struct rsnd_mod *mod, 234 int (*quit)(struct rsnd_mod *mod, [all …]
|
D | dvc.c | 19 struct rsnd_mod mod; member 31 container_of((_mod), struct rsnd_dvc, mod) 66 static void rsnd_dvc_volume_update(struct rsnd_mod *mod) in rsnd_dvc_volume_update() argument 68 struct rsnd_dvc *dvc = rsnd_mod_to_dvc(mod); in rsnd_dvc_volume_update() 78 rsnd_mod_write(mod, DVC_DVUER, 0); in rsnd_dvc_volume_update() 88 rsnd_mod_write(mod, DVC_VRCTR, 0xff); in rsnd_dvc_volume_update() 89 rsnd_mod_write(mod, DVC_VRPDR, dvc->rup.val << 8 | in rsnd_dvc_volume_update() 97 rsnd_mod_write(mod, DVC_VRDBR, in rsnd_dvc_volume_update() 107 rsnd_mod_write(mod, DVC_VOL0R, val[0]); in rsnd_dvc_volume_update() 108 rsnd_mod_write(mod, DVC_VOL1R, val[1]); in rsnd_dvc_volume_update() [all …]
|
D | dma.c | 38 struct rsnd_mod *mod = rsnd_dma_to_mod(dma); in rsnd_dmaen_complete() local 39 struct rsnd_dai_stream *io = rsnd_mod_to_io(mod); in rsnd_dmaen_complete() 66 struct rsnd_mod *mod = rsnd_dma_to_mod(dma); in rsnd_dmaen_start() local 67 struct rsnd_priv *priv = rsnd_mod_to_priv(mod); in rsnd_dmaen_start() 68 struct rsnd_dai_stream *io = rsnd_mod_to_io(mod); in rsnd_dmaen_start() 98 struct rsnd_mod *mod, char *name) in rsnd_dma_request_channel() argument 105 if (i == rsnd_mod_id(mod)) in rsnd_dma_request_channel() 137 struct rsnd_mod *mod = rsnd_dma_to_mod(dma); in rsnd_dmaen_init() local 138 struct rsnd_dai_stream *io = rsnd_mod_to_io(mod); in rsnd_dmaen_init() 241 static u32 rsnd_dmapp_get_id(struct rsnd_mod *mod) in rsnd_dmapp_get_id() argument [all …]
|
D | core.c | 132 char *rsnd_mod_name(struct rsnd_mod *mod) in rsnd_mod_name() argument 134 if (!mod || !mod->ops) in rsnd_mod_name() 137 return mod->ops->name; in rsnd_mod_name() 140 struct dma_chan *rsnd_mod_dma_req(struct rsnd_mod *mod) in rsnd_mod_dma_req() argument 142 if (!mod || !mod->ops || !mod->ops->dma_req) in rsnd_mod_dma_req() 145 return mod->ops->dma_req(mod); in rsnd_mod_dma_req() 148 int rsnd_mod_init(struct rsnd_mod *mod, in rsnd_mod_init() argument 159 mod->id = id; in rsnd_mod_init() 160 mod->ops = ops; in rsnd_mod_init() 161 mod->type = type; in rsnd_mod_init() [all …]
|
D | gen.c | 73 struct rsnd_mod *mod, enum rsnd_reg reg) in rsnd_read() argument 83 rsnd_mod_name(mod), rsnd_mod_id(mod), reg, val); in rsnd_read() 85 regmap_fields_read(gen->regs[reg], rsnd_mod_id(mod), &val); in rsnd_read() 91 struct rsnd_mod *mod, in rsnd_write() argument 101 rsnd_mod_name(mod), rsnd_mod_id(mod), reg, data); in rsnd_write() 103 regmap_fields_write(gen->regs[reg], rsnd_mod_id(mod), data); in rsnd_write() 106 void rsnd_bset(struct rsnd_priv *priv, struct rsnd_mod *mod, in rsnd_bset() argument 116 rsnd_mod_name(mod), rsnd_mod_id(mod), reg, data, mask); in rsnd_bset() 118 regmap_fields_update_bits(gen->regs[reg], rsnd_mod_id(mod), in rsnd_bset()
|
/linux-4.1.27/drivers/gpio/ |
D | gpio-janz-ttl.c | 62 struct ttl_module *mod = dev_get_drvdata(gpio->dev); in ttl_get_value() local 67 shadow = &mod->porta_shadow; in ttl_get_value() 69 shadow = &mod->portb_shadow; in ttl_get_value() 72 shadow = &mod->portc_shadow; in ttl_get_value() 76 spin_lock(&mod->lock); in ttl_get_value() 78 spin_unlock(&mod->lock); in ttl_get_value() 84 struct ttl_module *mod = dev_get_drvdata(gpio->dev); in ttl_set_value() local 89 port = &mod->regs->porta; in ttl_set_value() 90 shadow = &mod->porta_shadow; in ttl_set_value() 92 port = &mod->regs->portb; in ttl_set_value() [all …]
|
/linux-4.1.27/arch/ia64/kernel/ |
D | module.c | 154 apply_imm64 (struct module *mod, struct insn *insn, uint64_t val) in apply_imm64() argument 158 mod->name, slot(insn)); in apply_imm64() 166 apply_imm60 (struct module *mod, struct insn *insn, uint64_t val) in apply_imm60() argument 170 mod->name, slot(insn)); in apply_imm60() 175 mod->name, (long) val); in apply_imm60() 183 apply_imm22 (struct module *mod, struct insn *insn, uint64_t val) in apply_imm22() argument 187 mod->name, (long)val); in apply_imm22() 198 apply_imm21b (struct module *mod, struct insn *insn, uint64_t val) in apply_imm21b() argument 202 mod->name, (long)val); in apply_imm21b() 233 patch_plt (struct module *mod, struct plt_entry *plt, long target_ip, unsigned long target_gp) in patch_plt() argument [all …]
|
/linux-4.1.27/include/trace/events/ |
D | module.h | 32 TP_PROTO(struct module *mod), 34 TP_ARGS(mod), 38 __string( name, mod->name ) 42 __entry->taints = mod->taints; 43 __assign_str(name, mod->name); 51 TP_PROTO(struct module *mod), 53 TP_ARGS(mod), 56 __string( name, mod->name ) 60 __assign_str(name, mod->name); 71 TP_PROTO(struct module *mod, unsigned long ip), [all …]
|
/linux-4.1.27/drivers/usb/renesas_usbhs/ |
D | mod.c | 75 void usbhs_mod_register(struct usbhs_priv *priv, struct usbhs_mod *mod, int id) in usbhs_mod_register() argument 79 info->mod[id] = mod; in usbhs_mod_register() 80 mod->priv = priv; in usbhs_mod_register() 91 ret = info->mod[id]; in usbhs_mod_get() 100 struct usbhs_mod *mod = usbhs_mod_get_current(priv); in usbhs_mod_is_host() local 103 if (!mod) in usbhs_mod_is_host() 106 return info->mod[USBHS_HOST] == mod; in usbhs_mod_is_host() 119 struct usbhs_mod *mod = NULL; in usbhs_mod_change() local 126 mod = info->mod[id]; in usbhs_mod_change() 131 info->curt = mod; in usbhs_mod_change() [all …]
|
D | mod.h | 90 struct usbhs_mod *mod[USBHS_MAX]; member 129 void usbhs_irq_callback_update(struct usbhs_priv *priv, struct usbhs_mod *mod); 134 struct usbhs_mod *mod; \ 135 mod = usbhs_mod_get_current(priv); \ 136 !mod ? -ENODEV : \ 137 !mod->func ? 0 : \ 138 mod->func(param); \
|
D | mod_host.c | 94 struct usbhs_mod mod; member 111 container_of(usbhs_mod_get(priv, USBHS_HOST), struct usbhsh_hpriv, mod) 127 #define usbhsh_hpriv_to_priv(h) ((h)->mod.priv) 206 return (hpriv->mod.irq_attch == NULL); in usbhsh_is_running() 1346 hpriv->mod.irq_attch = NULL; in usbhsh_irq_attch() 1347 usbhs_irq_callback_update(priv, &hpriv->mod); in usbhsh_irq_attch() 1372 hpriv->mod.irq_attch = usbhsh_irq_attch; in usbhsh_irq_dtch() 1373 usbhs_irq_callback_update(priv, &hpriv->mod); in usbhsh_irq_dtch() 1465 struct usbhs_mod *mod = usbhs_mod_get_current(priv); in usbhsh_start() local 1494 mod->irq_attch = usbhsh_irq_attch; in usbhsh_start() [all …]
|
D | mod_gadget.c | 47 struct usbhs_mod mod; member 78 struct usbhsg_gpriv, mod) 98 #define usbhsg_gpriv_to_dev(gp) usbhs_priv_to_dev((gp)->mod.priv) 99 #define usbhsg_gpriv_to_priv(gp) ((gp)->mod.priv) 778 struct usbhs_mod *mod = usbhs_mod_get_current(priv); in usbhsg_try_start() local 826 mod->irq_dev_state = usbhsg_irq_dev_state; in usbhsg_try_start() 827 mod->irq_ctrl_stage = usbhsg_irq_ctrl_stage; in usbhsg_try_start() 828 usbhs_irq_callback_update(priv, mod); in usbhsg_try_start() 836 struct usbhs_mod *mod = usbhs_mod_get_current(priv); in usbhsg_try_stop() local 862 mod->irq_dev_state = NULL; in usbhsg_try_stop() [all …]
|
D | fifo.c | 224 struct usbhs_mod *mod = usbhs_mod_get_current(priv); \ 226 if (!mod) \ 229 mod->status |= status; \ 231 mod->status &= ~status; \ 232 usbhs_irq_callback_update(priv, mod); \ 1377 struct usbhs_mod *mod = usbhs_mod_get_current(priv); in usbhs_fifo_init() local 1382 mod->irq_empty = usbhsf_irq_empty; in usbhs_fifo_init() 1383 mod->irq_ready = usbhsf_irq_ready; in usbhs_fifo_init() 1384 mod->irq_bempsts = 0; in usbhs_fifo_init() 1385 mod->irq_brdysts = 0; in usbhs_fifo_init() [all …]
|
D | common.c | 373 struct usbhs_mod *mod = usbhs_mod_get_current(priv); in usbhsc_hotplug() local 389 if (enable && !mod) { in usbhsc_hotplug() 417 } else if (!enable && mod) { in usbhsc_hotplug() 716 struct usbhs_mod *mod = usbhs_mod_get_current(priv); in usbhsc_suspend() local 718 if (mod) { in usbhsc_suspend() 723 if (mod || !usbhsc_flags_has(priv, USBHSF_RUNTIME_PWCTRL)) in usbhsc_suspend()
|
D | Makefile | 7 renesas_usbhs-y := common.o mod.o pipe.o fifo.o rcar2.o
|
/linux-4.1.27/net/can/ |
D | gw.c | 102 struct cf_mod *mod); 135 struct cf_mod mod; member 156 struct cf_mod *mod) { op ; } 158 MODFUNC(mod_and_id, cf->can_id &= mod->modframe.and.can_id) 159 MODFUNC(mod_and_dlc, cf->can_dlc &= mod->modframe.and.can_dlc) 160 MODFUNC(mod_and_data, *(u64 *)cf->data &= *(u64 *)mod->modframe.and.data) 161 MODFUNC(mod_or_id, cf->can_id |= mod->modframe.or.can_id) 162 MODFUNC(mod_or_dlc, cf->can_dlc |= mod->modframe.or.can_dlc) 163 MODFUNC(mod_or_data, *(u64 *)cf->data |= *(u64 *)mod->modframe.or.data) 164 MODFUNC(mod_xor_id, cf->can_id ^= mod->modframe.xor.can_id) [all …]
|
/linux-4.1.27/arch/blackfin/kernel/ |
D | module.c | 7 #define pr_fmt(fmt) "module %s: " fmt, mod->name 22 char *secstrings, struct module *mod) in module_frob_arch_sections() argument 45 mod->arch.text_l1 = dest; in module_frob_arch_sections() 57 mod->arch.data_a_l1 = dest; in module_frob_arch_sections() 69 mod->arch.bss_a_l1 = dest; in module_frob_arch_sections() 78 mod->arch.data_b_l1 = dest; in module_frob_arch_sections() 88 mod->arch.bss_b_l1 = dest; in module_frob_arch_sections() 100 mod->arch.text_l2 = dest; in module_frob_arch_sections() 112 mod->arch.data_l2 = dest; in module_frob_arch_sections() 124 mod->arch.bss_l2 = dest; in module_frob_arch_sections() [all …]
|
D | bfin_dma.c | 485 s16 mod; in _dma_memcpy() local 507 mod = 1 << shift; in _dma_memcpy() 509 mod *= -1; in _dma_memcpy() 510 dst += size + mod; in _dma_memcpy() 511 src += size + mod; in _dma_memcpy() 520 __dma_memcpy(dst, mod, src, mod, size, conf); in _dma_memcpy()
|
D | ftrace.c | 41 int ftrace_make_nop(struct module *mod, struct dyn_ftrace *rec, in ftrace_make_nop() argument
|
/linux-4.1.27/lib/ |
D | bug.c | 66 struct module *mod; in module_find_bug() local 70 list_for_each_entry_rcu(mod, &module_bug_list, bug_list) { in module_find_bug() 73 bug = mod->bug_table; in module_find_bug() 74 for (i = 0; i < mod->num_bugs; ++i, ++bug) in module_find_bug() 86 struct module *mod) in module_bug_finalize() argument 91 mod->bug_table = NULL; in module_bug_finalize() 92 mod->num_bugs = 0; in module_bug_finalize() 99 mod->bug_table = (void *) sechdrs[i].sh_addr; in module_bug_finalize() 100 mod->num_bugs = sechdrs[i].sh_size / sizeof(struct bug_entry); in module_bug_finalize() 111 list_add_rcu(&mod->bug_list, &module_bug_list); in module_bug_finalize() [all …]
|
/linux-4.1.27/arch/powerpc/kernel/ |
D | ftrace.c | 106 __ftrace_make_nop(struct module *mod, in __ftrace_make_nop() argument 134 if (module_trampoline_target(mod, tramp, &ptr)) { in __ftrace_make_nop() 171 __ftrace_make_nop(struct module *mod, in __ftrace_make_nop() argument 241 int ftrace_make_nop(struct module *mod, in ftrace_make_nop() argument 265 if (!rec->arch.mod) { in ftrace_make_nop() 266 if (!mod) { in ftrace_make_nop() 270 rec->arch.mod = mod; in ftrace_make_nop() 271 } else if (mod) { in ftrace_make_nop() 272 if (mod != rec->arch.mod) { in ftrace_make_nop() 274 rec->arch.mod, mod); in ftrace_make_nop() [all …]
|
D | module_32.c | 185 struct module *mod) in do_plt_call() argument 191 if (location >= mod->module_core in do_plt_call() 192 && location < mod->module_core + mod->core_size) in do_plt_call() 193 entry = (void *)sechdrs[mod->arch.core_plt_section].sh_addr; in do_plt_call() 195 entry = (void *)sechdrs[mod->arch.init_plt_section].sh_addr; in do_plt_call()
|
/linux-4.1.27/drivers/gpu/drm/tilcdc/ |
D | tilcdc_tfp410.c | 52 struct tfp410_module *mod; member 74 gpio_direction_output(tfp410_encoder->mod->gpio, 1); in tfp410_encoder_dpms() 77 gpio_direction_output(tfp410_encoder->mod->gpio, 0); in tfp410_encoder_dpms() 122 struct tfp410_module *mod) in tfp410_encoder_create() argument 135 tfp410_encoder->mod = mod; in tfp410_encoder_create() 162 struct tfp410_module *mod; member 181 if (drm_probe_ddc(tfp410_connector->mod->i2c)) in tfp410_connector_detect() 193 edid = drm_get_edid(connector, tfp410_connector->mod->i2c); in tfp410_connector_get_modes() 234 struct tfp410_module *mod, struct drm_encoder *encoder) in tfp410_connector_create() argument 247 tfp410_connector->mod = mod; in tfp410_connector_create() [all …]
|
D | tilcdc_panel.c | 44 struct panel_module *mod; member 59 struct backlight_device *backlight = panel_encoder->mod->backlight; in panel_encoder_dpms() 60 struct gpio_desc *gpio = panel_encoder->mod->enable_gpio; in panel_encoder_dpms() 85 tilcdc_crtc_set_panel_info(encoder->crtc, panel_encoder->mod->info); in panel_encoder_prepare() 113 struct panel_module *mod) in panel_encoder_create() argument 125 panel_encoder->mod = mod; in panel_encoder_create() 152 struct panel_module *mod; member 176 struct display_timings *timings = panel_connector->mod->timings; in panel_connector_get_modes() 229 struct panel_module *mod, struct drm_encoder *encoder) in panel_connector_create() argument 242 panel_connector->mod = mod; in panel_connector_create() [all …]
|
D | tilcdc_slave.c | 50 struct slave_module *mod; member 119 struct slave_module *mod) in slave_encoder_create() argument 131 slave_encoder->mod = mod; in slave_encoder_create() 143 ret = drm_i2c_encoder_init(dev, to_encoder_slave(encoder), mod->i2c, &info); in slave_encoder_create() 162 struct slave_module *mod; member 232 struct slave_module *mod, struct drm_encoder *encoder) in slave_connector_create() argument 245 slave_connector->mod = mod; in slave_connector_create() 278 static int slave_modeset_init(struct tilcdc_module *mod, struct drm_device *dev) in slave_modeset_init() argument 280 struct slave_module *slave_mod = to_slave_module(mod); in slave_modeset_init() 314 struct tilcdc_module *mod; in slave_probe() local [all …]
|
D | tilcdc_drv.c | 31 void tilcdc_module_init(struct tilcdc_module *mod, const char *name, in tilcdc_module_init() argument 34 mod->name = name; in tilcdc_module_init() 35 mod->funcs = funcs; in tilcdc_module_init() 36 INIT_LIST_HEAD(&mod->list); in tilcdc_module_init() 37 list_add(&mod->list, &module_list); in tilcdc_module_init() 40 void tilcdc_module_cleanup(struct tilcdc_module *mod) in tilcdc_module_cleanup() argument 42 list_del(&mod->list); in tilcdc_module_cleanup() 72 struct tilcdc_module *mod; in modeset_init() local 78 list_for_each_entry(mod, &module_list, list) { in modeset_init() 79 DBG("loading module: %s", mod->name); in modeset_init() [all …]
|
D | tilcdc_drv.h | 100 int (*modeset_init)(struct tilcdc_module *mod, struct drm_device *dev); 103 int (*debugfs_init)(struct tilcdc_module *mod, struct drm_minor *minor); 105 void (*debugfs_cleanup)(struct tilcdc_module *mod, struct drm_minor *minor); 116 void tilcdc_module_init(struct tilcdc_module *mod, const char *name, 118 void tilcdc_module_cleanup(struct tilcdc_module *mod);
|
/linux-4.1.27/arch/arc/kernel/ |
D | module.c | 34 char *secstr, struct module *mod) in module_frob_arch_sections() argument 39 mod->arch.unw_sec_idx = 0; in module_frob_arch_sections() 40 mod->arch.unw_info = NULL; in module_frob_arch_sections() 45 mod->arch.unw_sec_idx = i; in module_frob_arch_sections() 53 void module_arch_cleanup(struct module *mod) in module_arch_cleanup() argument 56 if (mod->arch.unw_info) in module_arch_cleanup() 57 unwind_remove_table(mod->arch.unw_info, 0); in module_arch_cleanup() 132 struct module *mod) in module_finalize() argument 136 int unwsec = mod->arch.unw_sec_idx; in module_finalize() 139 unw = unwind_add_table(mod, (void *)sechdrs[unwsec].sh_addr, in module_finalize() [all …]
|
/linux-4.1.27/drivers/staging/lustre/lustre/include/ |
D | lu_object.h | 1122 #define LU_KEY_INIT(mod, type) \ argument 1123 static void *mod##_key_init(const struct lu_context *ctx, \ 1136 struct __##mod##__dummy_init {;} /* semicolon catcher */ 1138 #define LU_KEY_FINI(mod, type) \ argument 1139 static void mod##_key_fini(const struct lu_context *ctx, \ 1146 struct __##mod##__dummy_fini {;} /* semicolon catcher */ 1148 #define LU_KEY_INIT_FINI(mod, type) \ argument 1149 LU_KEY_INIT(mod, type); \ 1150 LU_KEY_FINI(mod, type) 1152 #define LU_CONTEXT_KEY_DEFINE(mod, tags) \ argument [all …]
|
D | obd.h | 1302 struct md_open_data **mod); 1407 struct md_open_data *mod; in obd_mod_alloc() local 1409 OBD_ALLOC_PTR(mod); in obd_mod_alloc() 1410 if (mod == NULL) in obd_mod_alloc() 1412 atomic_set(&mod->mod_refcount, 1); in obd_mod_alloc() 1413 return mod; in obd_mod_alloc() 1416 #define obd_mod_get(mod) atomic_inc(&(mod)->mod_refcount) argument 1417 #define obd_mod_put(mod) \ argument 1419 if (atomic_dec_and_test(&(mod)->mod_refcount)) { \ 1420 if ((mod)->mod_open_req) \ [all …]
|
/linux-4.1.27/arch/parisc/kernel/ |
D | inventory.c | 214 dev->mod0 = pa_pdc_cell->mod[0]; in pat_query_module() 226 pa_pdc_cell->mod[0]); in pat_query_module() 232 pa_pdc_cell->mod[0], pa_pdc_cell->mod[1], in pat_query_module() 233 pa_pdc_cell->mod[2]); in pat_query_module() 253 printk(KERN_DEBUG "ranges %ld\n", pa_pdc_cell->mod[1]); in pat_query_module() 254 for (i = 0; i < pa_pdc_cell->mod[1]; i++) { in pat_query_module() 257 i, pa_pdc_cell->mod[2 + i * 3], /* type */ in pat_query_module() 258 pa_pdc_cell->mod[3 + i * 3], /* start */ in pat_query_module() 259 pa_pdc_cell->mod[4 + i * 3]); /* finish (ie end) */ in pat_query_module() 262 i, io_pdc_cell->mod[2 + i * 3], /* type */ in pat_query_module() [all …]
|
D | drivers.c | 299 path->mod = PCI_FUNC(devfn); in get_node_path() 323 output += sprintf(output, "%u", (unsigned char) path->mod); in print_hwpath() 341 path.mod = dev->hw_path; in print_pa_hwpath() 471 return alloc_tree_node(parent, modpath->mod); in create_parisc_device() 648 (modpath->mod == PCI_FUNC(devfn))); in match_pci_device() 667 char id = (index == 6) ? modpath->mod : modpath->bc[index]; in match_parisc_device() 762 path->mod = padev->hw_path; in device_to_hwpath() 836 path.mod = i; in walk_native_bus()
|
D | module.c | 301 void module_arch_freeing_init(struct module *mod) in module_arch_freeing_init() argument 303 kfree(mod->arch.section); in module_arch_freeing_init() 304 mod->arch.section = NULL; in module_arch_freeing_init() 308 unsigned int arch_mod_section_prepend(struct module *mod, in arch_mod_section_prepend() argument 313 return (mod->arch.section[section].stub_entries + 1) in arch_mod_section_prepend() 937 void module_arch_cleanup(struct module *mod) in module_arch_cleanup() argument 939 deregister_unwind_table(mod); in module_arch_cleanup()
|
/linux-4.1.27/kernel/livepatch/ |
D | core.c | 86 return !obj->name || obj->mod; in klp_is_object_loaded() 92 struct module *mod; in klp_find_object_module() local 103 mod = find_module(obj->name); in klp_find_object_module() 111 if (mod && mod->klp_alive) in klp_find_object_module() 112 obj->mod = mod; in klp_find_object_module() 148 struct module *mod, unsigned long addr) in klp_find_callback() argument 152 if ((mod && !args->objname) || (!mod && args->objname)) in klp_find_callback() 158 if (args->objname && strcmp(args->objname, mod->name)) in klp_find_callback() 206 struct module *mod, unsigned long addr) in klp_verify_callback() argument 210 if (!mod && in klp_verify_callback() [all …]
|
/linux-4.1.27/scripts/ |
D | Makefile.modpost | 72 modpost = scripts/mod/modpost \ 92 quiet_cmd_kernel-mod = MODPOST $@ 93 cmd_kernel-mod = $(modpost) $@ 96 $(call cmd,kernel-mod) 100 $(modules:.ko=.mod.c): __modpost ; 106 modname = $(notdir $(@:.mod.o=)) 112 $(modules:.ko=.mod.o): %.mod.o: %.mod.c FORCE 115 targets += $(modules:.ko=.mod.o) 123 $(modules): %.ko :%.o %.mod.o FORCE
|
D | Makefile.fwinst | 20 mod-fw := $(fw-shipped-m) 24 mod-fw += $(fw-shipped-y) 36 installed-mod-fw := $(addprefix $(INSTALL_FW_PATH)/,$(mod-fw)) 52 __fw_modinst: $(installed-mod-fw) 55 __fw_modbuild: $(addprefix $(obj)/,$(mod-fw))
|
D | Makefile.modsign | 10 __modules := $(sort $(shell grep -h '\.ko$$' /dev/null $(wildcard $(MODVERDIR)/*.mod))) 22 ext-mod-dir = $(INSTALL_MOD_DIR)$(subst $(patsubst %/,%,$(KBUILD_EXTMOD)),,$(@D)) 24 modinst_dir = $(if $(KBUILD_EXTMOD),$(ext-mod-dir),kernel/$(@D))
|
D | Makefile.modinst | 12 __modules := $(sort $(shell grep -h '\.ko$$' /dev/null $(wildcard $(MODVERDIR)/*.mod))) 30 ext-mod-dir = $(INSTALL_MOD_DIR)$(subst $(patsubst %/,%,$(KBUILD_EXTMOD)),,$(@D)) 32 modinst_dir = $(if $(KBUILD_EXTMOD),$(ext-mod-dir),kernel/$(@D))
|
D | export_report.pl | 28 for my $mod (sort keys %$href) { 29 my $list = $href->{$mod}; 30 print "\t$mod:\n"; 54 while (<.tmp_versions/*.mod>) {
|
D | Makefile | 36 subdir-y += mod
|
D | Makefile.build | 112 cmd_secanalysis = ; scripts/mod/modpost $@ 266 @{ echo $(@:.o=.ko); echo $@; } > $(MODVERDIR)/$(@F:.o=.mod) 392 @{ echo $(@:.o=.ko); echo $(link_multi_deps); } > $(MODVERDIR)/$(@F:.o=.mod)
|
/linux-4.1.27/sound/soc/samsung/ |
D | s3c-i2s-v2.c | 81 u32 fic, con, mod; in s3c2412_snd_txctrl() local 87 mod = readl(regs + S3C2412_IISMOD); in s3c2412_snd_txctrl() 89 pr_debug("%s: IIS: CON=%x MOD=%x FIC=%x\n", __func__, con, mod, fic); in s3c2412_snd_txctrl() 96 switch (mod & S3C2412_IISMOD_MODE_MASK) { in s3c2412_snd_txctrl() 103 mod &= ~S3C2412_IISMOD_MODE_MASK; in s3c2412_snd_txctrl() 104 mod |= S3C2412_IISMOD_MODE_TXRX; in s3c2412_snd_txctrl() 109 mod & S3C2412_IISMOD_MODE_MASK); in s3c2412_snd_txctrl() 114 writel(mod, regs + S3C2412_IISMOD); in s3c2412_snd_txctrl() 125 switch (mod & S3C2412_IISMOD_MODE_MASK) { in s3c2412_snd_txctrl() 127 mod &= ~S3C2412_IISMOD_MODE_MASK; in s3c2412_snd_txctrl() [all …]
|
D | i2s.c | 119 u32 mod = readl(i2s->addr + I2SMOD); in is_slave() local 120 return (mod & (1 << i2s->variant_regs->mss_off)) ? true : false; in is_slave() 249 u32 mod = readl(i2s->addr + I2SMOD); in set_rfs() local 252 mod &= ~(i2s->variant_regs->rfs_mask << rfs_shift); in set_rfs() 256 mod |= (EXYNOS7_MOD_RCLK_192FS << rfs_shift); in set_rfs() 259 mod |= (EXYNOS7_MOD_RCLK_96FS << rfs_shift); in set_rfs() 262 mod |= (EXYNOS7_MOD_RCLK_128FS << rfs_shift); in set_rfs() 265 mod |= (EXYNOS7_MOD_RCLK_64FS << rfs_shift); in set_rfs() 268 mod |= (MOD_RCLK_768FS << rfs_shift); in set_rfs() 271 mod |= (MOD_RCLK_512FS << rfs_shift); in set_rfs() [all …]
|
D | idma.c | 152 u32 mod = readl(idma.regs + I2SMOD); in idma_hw_params() local 156 mod |= MOD_TXS_IDMA; in idma_hw_params() 158 writel(mod, idma.regs + I2SMOD); in idma_hw_params()
|
/linux-4.1.27/include/linux/ |
D | module.h | 41 struct module *mod; member 381 static inline int module_is_live(struct module *mod) in module_is_live() argument 383 return mod->state != MODULE_STATE_GOING; in module_is_live() 393 const struct module *mod) in within_module_core() argument 395 return (unsigned long)mod->module_core <= addr && in within_module_core() 396 addr < (unsigned long)mod->module_core + mod->core_size; in within_module_core() 400 const struct module *mod) in within_module_init() argument 402 return (unsigned long)mod->module_init <= addr && in within_module_init() 403 addr < (unsigned long)mod->module_init + mod->init_size; in within_module_init() 406 static inline bool within_module(unsigned long addr, const struct module *mod) in within_module() argument [all …]
|
D | moduleloader.h | 19 struct module *mod); 22 unsigned int arch_mod_section_prepend(struct module *mod, unsigned int section); 40 struct module *mod); 63 struct module *mod); 80 struct module *mod); 83 void module_arch_cleanup(struct module *mod); 86 void module_arch_freeing_init(struct module *mod);
|
D | kmod.h | 37 #define request_module(mod...) __request_module(true, mod) argument 38 #define request_module_nowait(mod...) __request_module(false, mod) argument 39 #define try_then_request_module(x, mod...) \ argument 40 ((x) ?: (__request_module(true, mod), (x))) 44 #define try_then_request_module(x, mod...) (x) argument
|
D | livepatch.h | 103 struct module *mod; member 117 struct module *mod; member
|
D | jump_label.h | 146 extern void jump_label_apply_nops(struct module *mod); 196 static inline int jump_label_apply_nops(struct module *mod) in jump_label_apply_nops() argument
|
D | moduleparam.h | 491 extern int module_param_sysfs_setup(struct module *mod, 495 extern void module_param_sysfs_remove(struct module *mod); 497 static inline int module_param_sysfs_setup(struct module *mod, in module_param_sysfs_setup() argument 504 static inline void module_param_sysfs_remove(struct module *mod) in module_param_sysfs_remove() argument
|
D | ccp.h | 299 struct scatterlist *mod; member 471 struct scatterlist *mod; member
|
D | tracepoint.h | 58 struct module *mod; member 61 bool trace_module_has_bad_taint(struct module *mod); 65 static inline bool trace_module_has_bad_taint(struct module *mod) in trace_module_has_bad_taint() argument
|
D | ftrace.h | 515 extern int ftrace_make_nop(struct module *mod, 577 extern void ftrace_module_init(struct module *mod); 586 static inline void ftrace_release_mod(struct module *mod) {} in ftrace_release_mod() argument 587 static inline void ftrace_module_init(struct module *mod) {} in ftrace_module_init() argument
|
D | mpi.h | 118 int mpi_powm(MPI res, MPI base, MPI exp, MPI mod); 121 int mpi_mulpowm(MPI res, MPI *basearray, MPI *exparray, MPI mod);
|
D | dynamic_debug.h | 114 static inline int ddebug_remove_module(const char *mod) in ddebug_remove_module() argument
|
/linux-4.1.27/scripts/mod/ |
D | modpost.c | 121 struct module *mod; in find_module() local 123 for (mod = modules; mod; mod = mod->next) in find_module() 124 if (strcmp(mod->name, modname) == 0) in find_module() 126 return mod; in find_module() 131 struct module *mod; in new_module() local 134 mod = NOFAIL(malloc(sizeof(*mod))); in new_module() 135 memset(mod, 0, sizeof(*mod)); in new_module() 141 mod->is_dot_o = 1; in new_module() 145 mod->name = p; in new_module() 146 mod->gpl_compatible = -1; in new_module() [all …]
|
D | file2alias.c | 176 unsigned char max, struct module *mod) in do_usb_entry() argument 237 buf_printf(&mod->dev_table_buf, in do_usb_entry() 280 static void do_usb_entry_multi(void *symval, struct module *mod) in do_usb_entry_multi() argument 327 do_usb_entry(symval, devlo, ndigits, clo, chi, max, mod); in do_usb_entry_multi() 335 ndigits, clo, max, max, mod); in do_usb_entry_multi() 341 ndigits, 0x0, chi, max, mod); in do_usb_entry_multi() 346 struct module *mod) in do_usb_table() argument 351 device_id_check(mod->name, "usb", size, id_size, symval); in do_usb_table() 357 do_usb_entry_multi(symval + i, mod); in do_usb_table() 526 struct module *mod) in do_pnp_device_entry() argument [all …]
|
D | modpost.h | 169 void handle_moddevtable(struct module *mod, struct elf_info *info, 171 void add_moddevtable(struct buffer *buf, struct module *mod);
|
/linux-4.1.27/tools/perf/arch/powerpc/util/ |
D | skip-callchain-idx.c | 93 static Dwarf_Frame *get_eh_frame(Dwfl_Module *mod, Dwarf_Addr pc) in get_eh_frame() argument 100 cfi = dwfl_module_eh_cfi(mod, &bias); in get_eh_frame() 118 static Dwarf_Frame *get_dwarf_frame(Dwfl_Module *mod, Dwarf_Addr pc) in get_dwarf_frame() argument 125 cfi = dwfl_module_dwarf_cfi(mod, &bias); in get_dwarf_frame() 152 Dwfl_Module *mod; in check_return_addr() local 169 mod = dwfl_report_elf(dwfl, exec_file, exec_file, -1, in check_return_addr() 171 if (!mod) { in check_return_addr() 185 mod = dwfl_addrmodule(dwfl, pc); in check_return_addr() 186 if (!mod) { in check_return_addr() 195 frame = get_eh_frame(mod, pc); in check_return_addr() [all …]
|
/linux-4.1.27/kernel/trace/ |
D | bpf_trace.c | 101 int mod[3] = {}; in bpf_trace_printk() local 127 mod[fmt_cnt]++; in bpf_trace_printk() 130 mod[fmt_cnt]++; in bpf_trace_printk() 139 mod[fmt_cnt]++; in bpf_trace_printk() 149 mod[0] == 2 ? r3 : mod[0] == 1 ? (long) r3 : (u32) r3, in bpf_trace_printk() 150 mod[1] == 2 ? r4 : mod[1] == 1 ? (long) r4 : (u32) r4, in bpf_trace_printk() 151 mod[2] == 2 ? r5 : mod[2] == 1 ? (long) r5 : (u32) r5); in bpf_trace_printk()
|
D | trace_printk.c | 84 struct module *mod = data; in module_trace_bprintk_format_notify() local 85 if (mod->num_trace_bprintk_fmt) { in module_trace_bprintk_format_notify() 86 const char **start = mod->trace_bprintk_fmt_start; in module_trace_bprintk_format_notify() 87 const char **end = start + mod->num_trace_bprintk_fmt; in module_trace_bprintk_format_notify()
|
D | trace_events.c | 1706 __register_event(struct ftrace_event_call *call, struct module *mod) in __register_event() argument 1715 call->mod = mod; in __register_event() 1983 static void trace_module_add_events(struct module *mod) in trace_module_add_events() argument 1987 if (!mod->num_trace_events) in trace_module_add_events() 1991 if (trace_module_has_bad_taint(mod)) { in trace_module_add_events() 1993 mod->name); in trace_module_add_events() 1997 start = mod->trace_events; in trace_module_add_events() 1998 end = mod->trace_events + mod->num_trace_events; in trace_module_add_events() 2001 __register_event(*call, mod); in trace_module_add_events() 2006 static void trace_module_remove_events(struct module *mod) in trace_module_remove_events() argument [all …]
|
D | ftrace.c | 2409 ftrace_code_disable(struct module *mod, struct dyn_ftrace *rec) in ftrace_code_disable() argument 2416 ret = ftrace_make_nop(mod, rec, MCOUNT_ADDR); in ftrace_code_disable() 2820 static int ftrace_update_code(struct module *mod, struct ftrace_page *new_pgs) in ftrace_update_code() argument 2836 if (mod) { in ftrace_update_code() 2870 if (!ftrace_code_disable(mod, p)) in ftrace_update_code() 3470 ftrace_match_record(struct dyn_ftrace *rec, char *mod, in ftrace_match_record() argument 3478 if (mod) { in ftrace_match_record() 3480 if (!modname || strcmp(modname, mod)) in ftrace_match_record() 3493 int len, char *mod, int not) in match_records() argument 3514 if (ftrace_match_record(rec, mod, search, search_len, type)) { in match_records() [all …]
|
D | trace_event_perf.c | 170 module_put(tp_event->mod); in perf_trace_event_unreg() 217 try_module_get(tp_event->mod)) { in perf_trace_init() 220 module_put(tp_event->mod); in perf_trace_init()
|
/linux-4.1.27/include/linux/iio/imu/ |
D | adis.h | 202 #define ADIS_MOD_CHAN(_type, mod, addr, si, info_sep, info_all, bits) { \ argument 205 .channel2 = IIO_MOD_ ## mod, \ 220 #define ADIS_ACCEL_CHAN(mod, addr, si, info_sep, info_all, bits) \ argument 221 ADIS_MOD_CHAN(IIO_ACCEL, mod, addr, si, info_sep, info_all, bits) 223 #define ADIS_GYRO_CHAN(mod, addr, si, info_sep, info_all, bits) \ argument 224 ADIS_MOD_CHAN(IIO_ANGL_VEL, mod, addr, si, info_sep, info_all, bits) 226 #define ADIS_INCLI_CHAN(mod, addr, si, info_sep, info_all, bits) \ argument 227 ADIS_MOD_CHAN(IIO_INCLI, mod, addr, si, info_sep, info_all, bits) 229 #define ADIS_ROT_CHAN(mod, addr, si, info_sep, info_all, bits) \ argument 230 ADIS_MOD_CHAN(IIO_ROT, mod, addr, si, info_sep, info_all, bits)
|
/linux-4.1.27/drivers/usb/gadget/ |
D | functions.c | 23 if (!try_module_get(fd->mod)) { in try_get_usb_function_instance() 29 module_put(fd->mod); in try_get_usb_function_instance() 70 struct module *mod; in usb_put_function_instance() local 75 mod = fi->fd->mod; in usb_put_function_instance() 77 module_put(mod); in usb_put_function_instance()
|
/linux-4.1.27/drivers/scsi/bfa/ |
D | bfa_svc.c | 449 claim_fcxps_mem(struct bfa_fcxp_mod_s *mod) in claim_fcxps_mem() argument 454 fcxp = (struct bfa_fcxp_s *) bfa_mem_kva_curp(mod); in claim_fcxps_mem() 455 memset(fcxp, 0, sizeof(struct bfa_fcxp_s) * mod->num_fcxps); in claim_fcxps_mem() 457 INIT_LIST_HEAD(&mod->fcxp_req_free_q); in claim_fcxps_mem() 458 INIT_LIST_HEAD(&mod->fcxp_rsp_free_q); in claim_fcxps_mem() 459 INIT_LIST_HEAD(&mod->fcxp_active_q); in claim_fcxps_mem() 460 INIT_LIST_HEAD(&mod->fcxp_req_unused_q); in claim_fcxps_mem() 461 INIT_LIST_HEAD(&mod->fcxp_rsp_unused_q); in claim_fcxps_mem() 463 mod->fcxp_list = fcxp; in claim_fcxps_mem() 465 for (i = 0; i < mod->num_fcxps; i++) { in claim_fcxps_mem() [all …]
|
D | bfa_fcs.c | 74 struct bfa_fcs_mod_s *mod; in bfa_fcs_attach() local 85 mod = &fcs_modules[i]; in bfa_fcs_attach() 86 if (mod->attach) in bfa_fcs_attach() 87 mod->attach(fcs); in bfa_fcs_attach() 98 struct bfa_fcs_mod_s *mod; in bfa_fcs_init() local 101 mod = &fcs_modules[i]; in bfa_fcs_init() 102 if (mod->modinit) in bfa_fcs_init() 103 mod->modinit(fcs); in bfa_fcs_init() 182 struct bfa_fcs_mod_s *mod; in bfa_fcs_exit() local 191 mod = &fcs_modules[i]; in bfa_fcs_exit() [all …]
|
D | bfa_ioc.c | 1992 struct bfa_ioc_mbox_mod_s *mod = &ioc->mbox_mod; in bfa_ioc_mbox_attach() local 1995 INIT_LIST_HEAD(&mod->cmd_q); in bfa_ioc_mbox_attach() 1997 mod->mbhdlr[mc].cbfn = NULL; in bfa_ioc_mbox_attach() 1998 mod->mbhdlr[mc].cbarg = ioc->bfa; in bfa_ioc_mbox_attach() 2008 struct bfa_ioc_mbox_mod_s *mod = &ioc->mbox_mod; in bfa_ioc_mbox_poll() local 2015 if (list_empty(&mod->cmd_q)) in bfa_ioc_mbox_poll() 2028 bfa_q_deq(&mod->cmd_q, &cmd); in bfa_ioc_mbox_poll() 2038 struct bfa_ioc_mbox_mod_s *mod = &ioc->mbox_mod; in bfa_ioc_mbox_flush() local 2041 while (!list_empty(&mod->cmd_q)) in bfa_ioc_mbox_flush() 2042 bfa_q_deq(&mod->cmd_q, &cmd); in bfa_ioc_mbox_flush() [all …]
|
/linux-4.1.27/arch/x86/math-emu/ |
D | get_address.c | 70 static int sib(int mod, unsigned long *fpu_eip) in sib() argument 84 if ((mod == 0) && (base == 5)) in sib() 98 if (mod == 1) { in sib() 107 } else if (mod == 2 || base == 5) { /* The second condition also has mod==0 */ in sib() 210 u_char mod; in FPU_get_address() local 224 mod = (FPU_modrm >> 6) & 3; in FPU_get_address() 226 if (rm == 4 && mod != 3) { in FPU_get_address() 227 address = sib(mod, fpu_eip); in FPU_get_address() 230 switch (mod) { in FPU_get_address() 295 u_char mod; in FPU_get_address_16() local [all …]
|
/linux-4.1.27/arch/x86/kernel/ |
D | alternative.c | 453 struct module *mod; member 470 void __init_or_module alternatives_smp_module_add(struct module *mod, in alternatives_smp_module_add() argument 490 smp->mod = mod; in alternatives_smp_module_add() 507 void __init_or_module alternatives_smp_module_del(struct module *mod) in alternatives_smp_module_del() argument 513 if (mod != item->mod) in alternatives_smp_module_del() 524 struct smp_alt_module *mod; in alternatives_enable_smp() local 536 list_for_each_entry(mod, &smp_alt_modules, next) in alternatives_enable_smp() 537 alternatives_smp_lock(mod->locks, mod->locks_end, in alternatives_enable_smp() 538 mod->text, mod->text_end); in alternatives_enable_smp() 547 struct smp_alt_module *mod; in alternatives_text_reserved() local [all …]
|
D | livepatch.c | 38 int klp_write_module_reloc(struct module *mod, unsigned long type, in klp_write_module_reloc() argument 44 unsigned long core = (unsigned long)mod->module_core; in klp_write_module_reloc() 45 unsigned long core_ro_size = mod->core_ro_size; in klp_write_module_reloc() 46 unsigned long core_size = mod->core_size; in klp_write_module_reloc()
|
D | test_nx.c | 47 struct module *mod = THIS_MODULE; in fudze_exception_table() local 56 if (mod->num_exentries > 1) { in fudze_exception_table() 61 extable = (struct exception_table_entry *)mod->extable; in fudze_exception_table()
|
D | module.c | 253 void module_arch_cleanup(struct module *mod) in module_arch_cleanup() argument 255 alternatives_smp_module_del(mod); in module_arch_cleanup()
|
/linux-4.1.27/sound/soc/intel/baytrail/ |
D | sst-baytrail-dsp.c | 69 struct sst_module *mod; in sst_byt_parse_module() local 77 mod = sst_module_new(fw, &template, NULL); in sst_byt_parse_module() 78 if (mod == NULL) in sst_byt_parse_module() 92 mod->offset = block->ram_offset + in sst_byt_parse_module() 94 mod->type = SST_MEM_IRAM; in sst_byt_parse_module() 97 mod->offset = block->ram_offset + in sst_byt_parse_module() 99 mod->type = SST_MEM_DRAM; in sst_byt_parse_module() 102 mod->offset = block->ram_offset + in sst_byt_parse_module() 104 mod->type = SST_MEM_CACHE; in sst_byt_parse_module() 112 mod->size = block->size; in sst_byt_parse_module() [all …]
|
/linux-4.1.27/arch/xtensa/kernel/ |
D | module.c | 53 struct module *mod) in apply_relocate_add() argument 93 mod->name, relsec, i, in apply_relocate_add() 117 mod->name, relsec, i, in apply_relocate_add() 160 mod->name, in apply_relocate_add() 180 mod->name, in apply_relocate_add() 186 mod->name, in apply_relocate_add()
|
/linux-4.1.27/drivers/staging/lustre/lustre/mdc/ |
D | mdc_request.c | 669 struct md_open_data *mod = req->rq_cb_data; in mdc_replay_open() local 675 if (mod == NULL) { in mdc_replay_open() 684 och = mod->mod_och; in mdc_replay_open() 696 close_req = mod->mod_close_req; in mdc_replay_open() 715 struct md_open_data *mod = req->rq_cb_data; in mdc_commit_open() local 717 if (mod == NULL) in mdc_commit_open() 739 obd_mod_put(mod); in mdc_commit_open() 746 struct md_open_data *mod; in mdc_set_open_replay_data() local 764 mod = obd_mod_alloc(); in mdc_set_open_replay_data() 765 if (mod == NULL) { in mdc_set_open_replay_data() [all …]
|
D | mdc_reint.c | 105 struct ptlrpc_request **request, struct md_open_data **mod) in mdc_setattr() argument 154 if (mod && (op_data->op_flags & MF_EPOCH_OPEN) && in mdc_setattr() 156 LASSERT(*mod == NULL); in mdc_setattr() 158 *mod = obd_mod_alloc(); in mdc_setattr() 159 if (*mod == NULL) { in mdc_setattr() 163 req->rq_cb_data = *mod; in mdc_setattr() 164 (*mod)->mod_open_req = req; in mdc_setattr() 166 (*mod)->mod_is_create = true; in mdc_setattr() 173 obd_mod_get(*mod); in mdc_setattr() 200 if (mod != NULL && *mod != NULL) in mdc_setattr() [all …]
|
/linux-4.1.27/arch/nios2/kernel/ |
D | module.c | 46 struct module *mod) in apply_relocate_add() argument 82 mod->name); in apply_relocate_add() 92 mod->name); in apply_relocate_add() 97 mod->name); in apply_relocate_add() 125 mod->name, ELF32_R_TYPE(rela[i].r_info)); in apply_relocate_add()
|
/linux-4.1.27/tools/perf/util/ |
D | trace-event-parse.c | 146 char *mod; in parse_proc_kallsyms() local 151 mod = NULL; in parse_proc_kallsyms() 157 mod = strtok_r(NULL, "]", &fmt); in parse_proc_kallsyms() 159 if (mod) in parse_proc_kallsyms() 160 mod = mod + 1; in parse_proc_kallsyms() 162 pevent_register_function(pevent, func, addr, mod); in parse_proc_kallsyms()
|
D | parse-events.c | 719 static int get_event_modifier(struct event_modifier *mod, char *str, in get_event_modifier() argument 735 memset(mod, 0, sizeof(*mod)); in get_event_modifier() 788 mod->eu = eu; in get_event_modifier() 789 mod->ek = ek; in get_event_modifier() 790 mod->eh = eh; in get_event_modifier() 791 mod->eH = eH; in get_event_modifier() 792 mod->eG = eG; in get_event_modifier() 793 mod->eI = eI; in get_event_modifier() 794 mod->precise = precise; in get_event_modifier() 795 mod->exclude_GH = exclude_GH; in get_event_modifier() [all …]
|
D | unwind-libdw.c | 26 Dwfl_Module *mod; in __report_module() local 39 mod = dwfl_addrmodule(ui->dwfl, ip); in __report_module() 40 if (!mod) in __report_module() 41 mod = dwfl_report_elf(ui->dwfl, dso->short_name, in __report_module() 45 return mod && dwfl_addrmodule(ui->dwfl, ip) == mod ? 0 : -1; in __report_module()
|
D | probe-finder.h | 28 Dwfl_Module *mod; member 87 Dwfl_Module *mod; /* For solving symbols */ member 95 Dwfl_Module *mod; /* For solving symbols */ member
|
D | probe-finder.c | 73 dbg->mod = dwfl_report_offline(dbg->dwfl, "", "", fd); in debuginfo__init_offline_dwarf() 74 if (!dbg->mod) in debuginfo__init_offline_dwarf() 77 dbg->dbg = dwfl_module_getdwarf(dbg->mod, &dbg->bias); in debuginfo__init_offline_dwarf() 595 static int convert_to_trace_point(Dwarf_Die *sp_die, Dwfl_Module *mod, in convert_to_trace_point() argument 623 symbol = dwfl_module_addrsym(mod, paddr, &sym, NULL); in convert_to_trace_point() 1174 ret = convert_to_trace_point(&pf->sp_die, tf->mod, pf->addr, in add_probe_trace_event() 1220 .mod = dbg->mod, .max_tevs = max_tevs}; in debuginfo__find_trace_events() 1289 ret = convert_to_trace_point(&pf->sp_die, af->mod, pf->addr, in add_available_vars() 1332 .mod = dbg->mod, in debuginfo__find_available_vars_at()
|
/linux-4.1.27/sound/soc/intel/haswell/ |
D | sst-haswell-dsp.c | 92 struct sst_module *mod; in hsw_parse_module() local 120 mod = sst_module_new(fw, &template, NULL); in hsw_parse_module() 121 if (mod == NULL) in hsw_parse_module() 131 sst_module_free(mod); in hsw_parse_module() 138 mod->offset = in hsw_parse_module() 140 mod->type = SST_MEM_IRAM; in hsw_parse_module() 145 mod->offset = block->ram_offset; in hsw_parse_module() 146 mod->type = SST_MEM_DRAM; in hsw_parse_module() 151 sst_module_free(mod); in hsw_parse_module() 155 mod->size = block->size; in hsw_parse_module() [all …]
|
/linux-4.1.27/arch/x86/lib/ |
D | insn.c | 257 insn_byte_t pfx_id, mod; in insn_get_modrm() local 264 mod = get_next(insn_byte_t, insn); in insn_get_modrm() 265 modrm->value = mod; in insn_get_modrm() 269 insn->attr = inat_get_group_attribute(mod, pfx_id, in insn_get_modrm() 347 insn_byte_t mod, rm, base; in insn_get_displacement() local 371 mod = X86_MODRM_MOD(insn->modrm.value); in insn_get_displacement() 374 if (mod == 3) in insn_get_displacement() 376 if (mod == 1) { in insn_get_displacement() 380 if ((mod == 0 && rm == 6) || mod == 2) { in insn_get_displacement() 386 if ((mod == 0 && rm == 5) || mod == 2 || in insn_get_displacement() [all …]
|
/linux-4.1.27/arch/m68k/kernel/ |
D | module.c | 104 struct module *mod) in module_finalize() argument 106 module_fixup(mod, mod->arch.fixup_start, mod->arch.fixup_end); in module_finalize() 112 void module_fixup(struct module *mod, struct m68k_fixup_info *start, in module_fixup() argument
|
/linux-4.1.27/fs/xfs/ |
D | xfs_linux.h | 230 __u32 mod; in xfs_do_div() local 234 mod = *(__u32 *)a % b; in xfs_do_div() 236 return mod; in xfs_do_div() 286 __u32 mod; in xfs_do_div() local 290 mod = *(__u32 *)a % b; in xfs_do_div() 292 return mod; in xfs_do_div() 294 mod = do_div(*(__u64 *)a, b); in xfs_do_div() 295 return mod; in xfs_do_div()
|
D | xfs_bmap_util.c | 1180 xfs_extlen_t mod=0; in xfs_free_file_space() local 1234 mod = do_div(block, mp->m_sb.sb_rextsize); in xfs_free_file_space() 1235 if (mod) in xfs_free_file_space() 1236 startoffset_fsb += mp->m_sb.sb_rextsize - mod; in xfs_free_file_space() 1246 mod++; in xfs_free_file_space() 1247 if (mod && (mod != mp->m_sb.sb_rextsize)) in xfs_free_file_space() 1248 endoffset_fsb -= mod; in xfs_free_file_space()
|
/linux-4.1.27/arch/mips/kernel/ |
D | vpe.c | 182 static void layout_sections(struct module *mod, const Elf_Ehdr *hdr, in layout_sections() argument 208 get_offset((unsigned long *)&mod->core_size, s); in layout_sections() 212 mod->core_text_size = mod->core_size; in layout_sections() 481 unsigned int nsecs, struct module *mod) in simplify_symbols() argument 537 const char *strtab, struct module *mod) in dump_elfsymbols() argument 552 struct module *mod) in find_vpe_symbols() argument 583 struct module mod; /* so we can re-use the relocations code */ in vpe_elfload() local 585 memset(&mod, 0, sizeof(struct module)); in vpe_elfload() 586 strcpy(mod.name, "VPE loader"); in vpe_elfload() 641 layout_sections(&mod, hdr, sechdrs, secstrings); in vpe_elfload() [all …]
|
D | cpu-bugs64.c | 31 static inline void align_mod(const int align, const int mod) in align_mod() argument 42 : GCC_IMM_ASM() (align), GCC_IMM_ASM() (mod)); in align_mod() 46 const int align, const int mod) in mult_sh_align_mod() argument 75 align_mod(align, mod); in mult_sh_align_mod() 106 align_mod(align, mod); in mult_sh_align_mod()
|
D | module.c | 293 void module_arch_cleanup(struct module *mod) in module_arch_cleanup() argument 296 list_del(&mod->arch.dbe_list); in module_arch_cleanup()
|
/linux-4.1.27/arch/arm/mach-imx/ |
D | hardware.h | 28 #define addr_in_module(addr, mod) \ argument 29 ((unsigned long)(addr) - mod ## _BASE_ADDR < mod ## _SIZE)
|
/linux-4.1.27/tools/virtio/ |
D | Makefile | 1 all: test mod 8 mod: target 10 .PHONY: all test mod clean
|
/linux-4.1.27/lib/mpi/ |
D | mpi-pow.c | 36 int mpi_powm(MPI res, MPI base, MPI exp, MPI mod) in mpi_powm() argument 53 msize = mod->nlimbs; in mpi_powm() 56 msign = mod->sign; in mpi_powm() 68 res->nlimbs = (msize == 1 && mod->d[0] == 1) ? 0 : 1; in mpi_powm() 80 mod_shift_cnt = count_leading_zeros(mod->d[msize - 1]); in mpi_powm() 82 mpihelp_lshift(mp, mod->d, msize, mod_shift_cnt); in mpi_powm() 84 MPN_COPY(mp, mod->d, msize); in mpi_powm()
|
/linux-4.1.27/tools/iio/ |
D | iio_event_monitor.c | 107 enum iio_modifier mod = IIO_EVENT_CODE_EXTRACT_MODIFIER(event->id); in event_is_known() local 138 switch (mod) { in event_is_known() 203 enum iio_modifier mod = IIO_EVENT_CODE_EXTRACT_MODIFIER(event->id); in print_event() local 218 if (mod != IIO_NO_MOD) { in print_event() 221 iio_modifier_names[mod]); in print_event()
|
/linux-4.1.27/drivers/irqchip/ |
D | irq-tb10x.c | 57 uint32_t im, mod, pol; in tb10x_irq_set_type() local 63 mod = ab_irqctl_readreg(gc, AB_IRQCTL_SRC_MODE) | im; in tb10x_irq_set_type() 71 mod ^= im; in tb10x_irq_set_type() 76 mod ^= im; in tb10x_irq_set_type() 91 ab_irqctl_writereg(gc, AB_IRQCTL_SRC_MODE, mod); in tb10x_irq_set_type()
|
/linux-4.1.27/arch/metag/kernel/ |
D | module.c | 163 Elf32_Shdr *sechdrs, struct module *mod) in do_plt_call() argument 179 if (location >= mod->module_core in do_plt_call() 180 && location < mod->module_core + mod->core_size) in do_plt_call() 181 entry = (void *)sechdrs[mod->arch.core_plt_section].sh_addr; in do_plt_call() 183 entry = (void *)sechdrs[mod->arch.init_plt_section].sh_addr; in do_plt_call()
|
D | ftrace.c | 96 int ftrace_make_nop(struct module *mod, in ftrace_make_nop() argument
|
/linux-4.1.27/drivers/md/ |
D | Makefile | 5 dm-mod-y += dm.o dm-table.o dm-target.o dm-linear.o dm-stripe.o \ 18 md-mod-y += md.o bitmap.o 35 obj-$(CONFIG_BLK_DEV_MD) += md-mod.o 36 obj-$(CONFIG_BLK_DEV_DM) += dm-mod.o 62 dm-mod-objs += dm-uevent.o
|
/linux-4.1.27/drivers/base/ |
D | module.c | 33 void module_add_driver(struct module *mod, struct device_driver *drv) in module_add_driver() argument 42 if (mod) in module_add_driver() 43 mk = &mod->mkobj; in module_add_driver()
|
D | base.h | 138 extern void module_add_driver(struct module *mod, struct device_driver *drv); 141 static inline void module_add_driver(struct module *mod, in module_add_driver() argument
|
/linux-4.1.27/arch/x86/crypto/ |
D | aesni-intel_avx-x86_64.S | 148 # u8 shifted_hkey_1[16] store HashKey <<1 mod poly here 149 # u8 shifted_hkey_2[16] store HashKey^2 <<1 mod poly here 150 # u8 shifted_hkey_3[16] store HashKey^3 <<1 mod poly here 151 # u8 shifted_hkey_4[16] store HashKey^4 <<1 mod poly here 152 # u8 shifted_hkey_5[16] store HashKey^5 <<1 mod poly here 153 # u8 shifted_hkey_6[16] store HashKey^6 <<1 mod poly here 154 # u8 shifted_hkey_7[16] store HashKey^7 <<1 mod poly here 155 # u8 shifted_hkey_8[16] store HashKey^8 <<1 mod poly here 156 # u8 shifted_hkey_1_k[16] store XOR HashKey <<1 mod poly here (for Karatsuba purposes) 157 # u8 shifted_hkey_2_k[16] store XOR HashKey^2 <<1 mod poly here (for Karatsuba purposes) [all …]
|
/linux-4.1.27/drivers/iio/imu/ |
D | adis16400_core.c | 487 #define ADIS16400_GYRO_CHAN(mod, addr, bits) { \ argument 490 .channel2 = IIO_MOD_ ## mod, \ 497 .scan_index = ADIS16400_SCAN_GYRO_ ## mod, \ 507 #define ADIS16400_ACCEL_CHAN(mod, addr, bits) { \ argument 510 .channel2 = IIO_MOD_ ## mod, \ 517 .scan_index = ADIS16400_SCAN_ACC_ ## mod, \ 527 #define ADIS16400_MAGN_CHAN(mod, addr, bits) { \ argument 530 .channel2 = IIO_MOD_ ## mod, \ 536 .scan_index = ADIS16400_SCAN_MAGN_ ## mod, \ 550 #define ADIS16400_MOD_TEMP_CHAN(mod, addr, bits) { \ argument [all …]
|
/linux-4.1.27/fs/btrfs/ |
D | dir-item.c | 195 int mod) in btrfs_lookup_dir_item() argument 199 int ins_len = mod < 0 ? -1 : 0; in btrfs_lookup_dir_item() 200 int cow = mod != 0; in btrfs_lookup_dir_item() 288 int mod) in btrfs_lookup_dir_index_item() argument 292 int ins_len = mod < 0 ? -1 : 0; in btrfs_lookup_dir_index_item() 293 int cow = mod != 0; in btrfs_lookup_dir_index_item() 358 int mod) in btrfs_lookup_xattr() argument 362 int ins_len = mod < 0 ? -1 : 0; in btrfs_lookup_xattr() 363 int cow = mod != 0; in btrfs_lookup_xattr()
|
D | inode-item.c | 418 struct btrfs_key *location, int mod) in btrfs_lookup_inode() argument 420 int ins_len = mod < 0 ? -1 : 0; in btrfs_lookup_inode() 421 int cow = mod != 0; in btrfs_lookup_inode()
|
/linux-4.1.27/kernel/gcov/ |
D | base.c | 129 struct module *mod = data; in gcov_module_notifier() local 139 if (within(info, mod->module_core, mod->core_size)) { in gcov_module_notifier()
|
/linux-4.1.27/drivers/media/platform/vivid/ |
D | vivid-radio-common.c | 120 int mod = 16000; in vivid_radio_calc_sig_qual() local 122 int sig_qual, sig_qual_tx = mod; in vivid_radio_calc_sig_qual() 129 mod /= 10; in vivid_radio_calc_sig_qual() 132 sig_qual = (dev->radio_rx_freq + delta) % mod - delta; in vivid_radio_calc_sig_qual()
|
/linux-4.1.27/arch/x86/include/asm/ |
D | alternative.h | 61 extern void alternatives_smp_module_add(struct module *mod, char *name, 64 extern void alternatives_smp_module_del(struct module *mod); 69 static inline void alternatives_smp_module_add(struct module *mod, char *name, in alternatives_smp_module_add() argument 72 static inline void alternatives_smp_module_del(struct module *mod) {} in alternatives_smp_module_del() argument
|
D | livepatch.h | 35 int klp_write_module_reloc(struct module *mod, unsigned long type,
|
D | inst.h | 202 .macro MODRM mod opd1 opd2 203 .byte \mod | (\opd1 & 7) | ((\opd2 & 7) << 3)
|
/linux-4.1.27/drivers/media/radio/wl128x/ |
D | fmdrv_v4l2.c | 431 struct v4l2_modulator *mod) in fm_v4l2_vidioc_g_modulator() argument 435 if (mod->index != 0) in fm_v4l2_vidioc_g_modulator() 441 mod->txsubchans = ((fmdev->tx_data.aud_mode == FM_STEREO_MODE) ? in fm_v4l2_vidioc_g_modulator() 446 mod->capability = V4L2_TUNER_CAP_STEREO | V4L2_TUNER_CAP_RDS | in fm_v4l2_vidioc_g_modulator() 454 const struct v4l2_modulator *mod) in fm_v4l2_vidioc_s_modulator() argument 461 if (mod->index != 0) in fm_v4l2_vidioc_s_modulator() 472 aud_mode = (mod->txsubchans & V4L2_TUNER_SUB_STEREO) ? in fm_v4l2_vidioc_s_modulator() 474 rds_mode = (mod->txsubchans & V4L2_TUNER_SUB_RDS) ? in fm_v4l2_vidioc_s_modulator()
|
/linux-4.1.27/arch/xtensa/lib/ |
D | usercopy.S | 85 bbsi.l a2, 0, .Ldst1mod2 # if dst is 1 mod 2 86 bbsi.l a2, 1, .Ldst2mod4 # if dst is 2 mod 4 128 .byte 0 # 1 mod 4 alignment for LOOPNEZ 129 # (0 mod 4 alignment for LBEG) 153 .align 4 # 1 mod 4 alignment for LOOPNEZ 154 .byte 0 # (0 mod 4 alignment for LBEG) 214 .byte 0 # 1 mod 4 alignement for LOOPNEZ 215 # (0 mod 4 alignment for LBEG)
|
D | memset.S | 65 .align 4 # 1 mod 4 alignment for LOOPNEZ 66 .byte 0 # (0 mod 4 alignment for LBEG) 134 .byte 0 # 1 mod 4 alignment for LOOPNEZ 135 # (0 mod 4 alignment for LBEG)
|
D | memcopy.S | 78 .byte 0 # 1 mod 4 alignment for LOOPNEZ 79 # (0 mod 4 alignment for LBEG) 135 _bbsi.l a2, 0, .Ldst1mod2 # if dst is 1 mod 2 136 _bbsi.l a2, 1, .Ldst2mod4 # if dst is 2 mod 4 137 .Ldstaligned: # return here from .Ldst?mod? once dst is aligned 344 .byte 0 # 1 mod 4 alignment for LOOPNEZ 345 # (0 mod 4 alignment for LBEG) 409 _bbsi.l a5, 0, .Lbackdst1mod2 # if dst is 1 mod 2 410 _bbsi.l a5, 1, .Lbackdst2mod4 # if dst is 2 mod 4 411 .Lbackdstaligned: # return here from .Lbackdst?mod? once dst is aligned
|
D | strncpy_user.S | 87 .Lsrc2mod4: # src address is 2 mod 4 109 .align 4 # 1 mod 4 alignment for LOOPNEZ 110 .byte 0 # (0 mod 4 alignment for LBEG) 186 .align 4 # 1 mod 4 alignment for LOOPNEZ 187 .byte 0 # (0 mod 4 alignment for LBEG)
|
/linux-4.1.27/arch/sh/kernel/ |
D | dwarf.c | 738 unsigned char *end, struct module *mod) in dwarf_parse_cie() argument 858 if (mod != NULL) in dwarf_parse_cie() 859 list_add_tail(&cie->link, &mod->arch.cie_list); in dwarf_parse_cie() 869 unsigned char *end, struct module *mod) in dwarf_parse_fde() argument 950 if (mod != NULL) in dwarf_parse_fde() 951 list_add_tail(&fde->link, &mod->arch.fde_list); in dwarf_parse_fde() 1029 struct module *mod) in dwarf_parse_section() argument 1066 err = dwarf_parse_cie(entry, p, len, end, mod); in dwarf_parse_section() 1073 end, mod); in dwarf_parse_section() 1134 void module_dwarf_cleanup(struct module *mod) in module_dwarf_cleanup() argument [all …]
|
D | module.c | 123 void module_arch_cleanup(struct module *mod) in module_arch_cleanup() argument 125 module_dwarf_cleanup(mod); in module_arch_cleanup()
|
/linux-4.1.27/net/bluetooth/ |
D | ecc.c | 334 const u64 *mod) in vli_mod_add() argument 343 if (carry || vli_cmp(result, mod) >= 0) in vli_mod_add() 344 vli_sub(result, result, mod); in vli_mod_add() 351 const u64 *mod) in vli_mod_sub() argument 360 vli_add(result, result, mod); in vli_mod_sub() 463 static void vli_mod_inv(u64 *result, const u64 *input, const u64 *mod) in vli_mod_inv() argument 476 vli_set(b, mod); in vli_mod_inv() 488 carry = vli_add(u, u, mod); in vli_mod_inv() 497 carry = vli_add(v, v, mod); in vli_mod_inv() 507 vli_add(u, u, mod); in vli_mod_inv() [all …]
|
/linux-4.1.27/tools/power/cpupower/debug/kernel/ |
D | Makefile | 15 - rm -rf *.o *.ko .tmp-versions .*.cmd .*.mod.* *.mod.c
|
/linux-4.1.27/drivers/iio/accel/ |
D | mma9553.c | 114 enum iio_modifier mod; member 119 .mod = IIO_NO_MOD, 124 .mod = IIO_MOD_STILL, 129 .mod = IIO_MOD_STILL, 134 .mod = IIO_MOD_WALKING, 139 .mod = IIO_MOD_WALKING, 144 .mod = IIO_MOD_JOGGING, 149 .mod = IIO_MOD_JOGGING, 154 .mod = IIO_MOD_RUNNING, 159 .mod = IIO_MOD_RUNNING, [all …]
|
/linux-4.1.27/sound/mips/ |
D | hal2.c | 81 unsigned short mod; /* MOD value */ member 325 unsigned short mod; in hal2_compute_rate() local 328 mod = 4 * 44100 / rate; in hal2_compute_rate() 331 mod = 4 * 48000 / rate; in hal2_compute_rate() 336 codec->mod = mod; in hal2_compute_rate() 337 rate = 4 * codec->master / mod; in hal2_compute_rate() 346 int mod = hal2->dac.mod; in hal2_set_dac_rate() local 350 ((0xffff & (inc - mod - 1)) << 16) | inc); in hal2_set_dac_rate() 357 int mod = hal2->adc.mod; in hal2_set_adc_rate() local 361 ((0xffff & (inc - mod - 1)) << 16) | inc); in hal2_set_adc_rate()
|
/linux-4.1.27/Documentation/devicetree/bindings/spi/ |
D | spi-sun4i.txt | 10 - "mod": the parent module clock 20 clock-names = "ahb", "mod";
|
D | spi-sun6i.txt | 10 - "mod": the parent module clock 22 clock-names = "ahb", "mod";
|
/linux-4.1.27/net/tipc/ |
D | link.h | 258 static inline u32 mod(u32 x) in mod() function 265 return mod(right - left) < 32768u; in less_eq() 275 return less_eq(left, right) && (mod(right) != mod(left)); in less()
|
D | link.c | 706 uint ack = mod(link->next_in_no - 1); in __tipc_link_xmit() 880 unsigned int ack = mod(link->next_in_no - 1); in tipc_link_push_packets() 981 msg_set_ack(msg, mod(l_ptr->next_in_no - 1)); in tipc_link_retransmit() 1008 post_synch = mod(pl->next_in_no - l->synch_point) - 1; in link_synch() 1025 if (seq_no == mod(link->next_in_no)) in link_retrieve_defq() 1140 if (unlikely(seq_no != mod(l_ptr->next_in_no))) { in tipc_rcv() 1322 if (less(seq_no, mod(l_ptr->next_in_no))) { in link_handle_out_of_seq_msg() 1363 u32 next_sent = mod(l_ptr->next_out_no); in tipc_link_proto_xmit() 1372 gap = mod(rec - mod(l_ptr->next_in_no)); in tipc_link_proto_xmit() 1380 msg_set_ack(msg, mod(l_ptr->next_in_no - 1)); in tipc_link_proto_xmit() [all …]
|
D | bcast.c | 121 bcl->fsm_msg_cnt = mod(buf_seqno(skb) - 1); in bclink_set_last_sent() 123 bcl->fsm_msg_cnt = mod(bcl->next_out_no - 1); in bclink_set_last_sent() 165 tipc_link_retransmit(bcl, skb, mod(to - after)); in bclink_retransmit_pkt() 474 next_in = mod(node->bclink.last_in + 1); in tipc_bclink_rcv() 545 next_in = mod(next_in + 1); in tipc_bclink_rcv()
|
/linux-4.1.27/arch/arm/kernel/ |
D | module.c | 294 struct module *mod) in module_finalize() argument 335 mod->arch.unwind[i] = in module_finalize() 357 module_arch_cleanup(struct module *mod) in module_arch_cleanup() argument 363 if (mod->arch.unwind[i]) in module_arch_cleanup() 364 unwind_table_del(mod->arch.unwind[i]); in module_arch_cleanup()
|
/linux-4.1.27/arch/cris/include/arch-v32/arch/hwregs/ |
D | Makefile | 52 REGDESC += $(BASEDIR)/mod/dma_common/rtl/dma_regdes.r 54 REGDESC += $(BASEDIR)/io/bif/mod/extmem/extmem_regs.r 108 extmem_defs.h: $(BASEDIR)/io/bif/mod/extmem/extmem_regs.r 127 reg_map.h: $(DESIGNDIR)/top/rtl/global.rmap $(DESIGNDIR)/top/mod/modreg.rmap 129 reg_map_asm.h: $(DESIGNDIR)/top/rtl/global.rmap $(DESIGNDIR)/top/mod/modreg.rmap
|
/linux-4.1.27/scripts/kconfig/ |
D | conf.c | 181 case mod: in conf_sym() 190 if (oldval != mod && sym_tristate_within_range(sym, mod)) in conf_sym() 210 newval = mod; in conf_sym() 249 case mod: in conf_choice() 258 case mod: in conf_choice() 395 if (sym->curr.tri != mod) in conf()
|
D | symbol.c | 20 .curr = { "m", mod }, 220 if (tri == mod && (sym->type != S_TRISTATE || modules_val == no)) in sym_calc_visibility() 232 if (tri == mod) in sym_calc_visibility() 241 if (tri == mod && sym_get_type(sym) == S_BOOLEAN) in sym_calc_visibility() 402 if (newval.tri == mod && sym_get_type(sym) == S_BOOLEAN) in sym_calc_value() 484 if (type == S_BOOLEAN && val == mod) in sym_tristate_within_range() 537 newval = mod; in sym_toggle_tristate_value() 539 case mod: in sym_toggle_tristate_value() 627 return sym_tristate_within_range(sym, mod); in sym_string_within_range() 650 return sym_set_tristate_value(sym, mod); in sym_set_string_value() [all …]
|
D | mconf.c | 549 case mod: ch = 'M'; break; in build_conf() 602 case mod: ch = 'M'; break; in build_conf() 606 if (sym->rev_dep.tri == mod) in build_conf() 726 if (sym_set_tristate_value(sym, mod)) in conf() 736 sym_set_tristate_value(sym, mod); in conf()
|
D | nconf.c | 815 case mod: in build_conf() 870 case mod: in build_conf() 878 if (sym->rev_dep.tri == mod) in build_conf() 1195 if (sym_set_tristate_value(sym, mod)) in conf() 1205 sym_set_tristate_value(sym, mod); in conf()
|
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/engine/gr/ |
D | ctxnv40.h | 77 _cp_bra(struct nvkm_grctx *ctx, u32 mod, int flag, int state, int name) in _cp_bra() argument 81 if (mod != 2) { in _cp_bra() 87 cp_out(ctx, CP_BRA | (mod << 18) | ip | flag | in _cp_bra()
|
/linux-4.1.27/drivers/gpu/drm/armada/ |
D | armada_fb.c | 45 #define FMT(drm, fmt, mod) \ in armada_framebuffer_create() argument 48 config = mod; \ in armada_framebuffer_create() 81 dfb->mod = config; in armada_framebuffer_create()
|
D | armada_fb.h | 15 uint8_t mod; member
|
/linux-4.1.27/sound/aoa/core/ |
D | alsa.c | 17 int aoa_alsa_init(char *name, struct module *mod, struct device *dev) in aoa_alsa_init() argument 26 err = snd_card_new(dev, index, name, mod, sizeof(struct aoa_card), in aoa_alsa_init()
|
D | alsa.h | 13 extern int aoa_alsa_init(char *name, struct module *mod, struct device *dev);
|
/linux-4.1.27/arch/x86/tools/ |
D | gen-insn-attr-x86.awk | 235 function convert_operands(count,opnd, i,j,imm,mod) 238 mod = null 251 mod = "INAT_MODRM" 253 return add_flags(imm, mod)
|
/linux-4.1.27/Documentation/devicetree/bindings/mtd/ |
D | sunxi-nand.txt | 12 * "mod" : nand controller clock 33 clock-names = "ahb", "mod";
|
/linux-4.1.27/arch/hexagon/kernel/ |
D | module.c | 42 struct module *mod) in module_frob_arch_sections() argument 63 mod->name); in module_frob_arch_sections()
|
/linux-4.1.27/Documentation/devicetree/bindings/input/touchscreen/ |
D | stmpe.txt | 11 - st,mod-12b: ADC Bit mode (0 -> 10bit ADC, 1 -> 12bit ADC) 35 st,mod-12b = <1>;
|
/linux-4.1.27/Documentation/devicetree/bindings/net/ |
D | davinci_emac.txt | 11 - ti,davinci-ctrl-mod-reg-offset: offset to control module register 31 ti,davinci-ctrl-mod-reg-offset = <0x2000>;
|
/linux-4.1.27/drivers/s390/crypto/ |
D | zcrypt_msgtype50.c | 189 unsigned char *mod, *exp, *inp; in ICAMEX_msg_to_type50MEX_msg() local 201 mod = meb1->modulus + sizeof(meb1->modulus) - mod_len; in ICAMEX_msg_to_type50MEX_msg() 211 mod = meb2->modulus + sizeof(meb2->modulus) - mod_len; in ICAMEX_msg_to_type50MEX_msg() 222 mod = meb3->modulus + sizeof(meb3->modulus) - mod_len; in ICAMEX_msg_to_type50MEX_msg() 227 if (copy_from_user(mod, mex->n_modulus, mod_len) || in ICAMEX_msg_to_type50MEX_msg()
|
/linux-4.1.27/arch/mips/include/asm/octeon/ |
D | cvmx-srxx-defs.h | 131 uint64_t mod:4; member 137 uint64_t mod:4;
|
/linux-4.1.27/drivers/macintosh/ |
D | windfarm_core.c | 287 struct module *mod = ct->ops->owner; in wf_put_control() local 289 module_put(mod); in wf_put_control() 400 struct module *mod = sr->ops->owner; in wf_put_sensor() local 402 module_put(mod); in wf_put_sensor()
|
/linux-4.1.27/arch/parisc/include/asm/ |
D | pdcpat.h | 281 unsigned long mod[508]; /* PAT cell module components */ member 289 extern int pdc_pat_cell_module(unsigned long *actcnt, unsigned long ploc, unsigned long mod, unsign…
|
/linux-4.1.27/drivers/mtd/ |
D | mtdoops.c | 159 int i = 0, j, ret, mod; in mtdoops_workfunc_erase() local 165 mod = (cxt->nextpage * record_size) % mtd->erasesize; in mtdoops_workfunc_erase() 166 if (mod != 0) { in mtdoops_workfunc_erase() 167 cxt->nextpage = cxt->nextpage + ((mtd->erasesize - mod) / record_size); in mtdoops_workfunc_erase()
|
/linux-4.1.27/arch/avr32/kernel/ |
D | module.c | 22 void module_arch_freeing_init(struct module *mod) in module_arch_freeing_init() argument 24 vfree(mod->arch.syminfo); in module_arch_freeing_init() 25 mod->arch.syminfo = NULL; in module_arch_freeing_init()
|
/linux-4.1.27/arch/s390/include/asm/ |
D | livepatch.h | 28 static inline int klp_write_module_reloc(struct module *mod, unsigned long in klp_write_module_reloc() argument
|
/linux-4.1.27/drivers/net/ethernet/brocade/bna/ |
D | bfa_ioc.c | 2144 struct bfa_ioc_mbox_mod *mod = &ioc->mbox_mod; in bfa_ioc_mbox_attach() local 2147 INIT_LIST_HEAD(&mod->cmd_q); in bfa_ioc_mbox_attach() 2149 mod->mbhdlr[mc].cbfn = NULL; in bfa_ioc_mbox_attach() 2150 mod->mbhdlr[mc].cbarg = ioc->bfa; in bfa_ioc_mbox_attach() 2158 struct bfa_ioc_mbox_mod *mod = &ioc->mbox_mod; in bfa_ioc_mbox_poll() local 2167 if (list_empty(&mod->cmd_q)) in bfa_ioc_mbox_poll() 2180 bfa_q_deq(&mod->cmd_q, &cmd); in bfa_ioc_mbox_poll() 2198 struct bfa_ioc_mbox_mod *mod = &ioc->mbox_mod; in bfa_ioc_mbox_flush() local 2201 while (!list_empty(&mod->cmd_q)) in bfa_ioc_mbox_flush() 2202 bfa_q_deq(&mod->cmd_q, &cmd); in bfa_ioc_mbox_flush() [all …]
|
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/subdev/bios/ |
D | M0209.c | 124 u8 mod = bits % 8; in nvbios_M0209Sp() local 126 info->data[i] = info->data[i] >> mod; in nvbios_M0209Sp()
|
/linux-4.1.27/fs/hfsplus/ |
D | btree.c | 77 u32 mod = max(node_size, block_size); in hfsplus_calc_btree_clump_size() local 118 clump_size /= mod; in hfsplus_calc_btree_clump_size() 119 clump_size *= mod; in hfsplus_calc_btree_clump_size() 126 clump_size = mod; in hfsplus_calc_btree_clump_size()
|
/linux-4.1.27/arch/m68k/include/asm/ |
D | module.h | 38 extern void module_fixup(struct module *mod, struct m68k_fixup_info *start,
|
/linux-4.1.27/net/9p/ |
D | Makefile | 6 mod.o \
|
/linux-4.1.27/include/linux/usb/ |
D | composite.h | 207 struct module *mod; member 565 struct module *mod; member 596 .mod = THIS_MODULE, \
|
/linux-4.1.27/arch/sh/include/uapi/asm/ |
D | ptrace_32.h | 73 unsigned long mod; member
|
/linux-4.1.27/drivers/base/power/ |
D | trace.c | 133 static unsigned int hash_string(unsigned int seed, const char *data, unsigned int mod) in hash_string() argument 139 return seed % mod; in hash_string()
|
/linux-4.1.27/include/linux/iio/common/ |
D | st_sensors.h | 44 #define ST_SENSORS_LSM_CHANNELS(device_type, mask, index, mod, \ argument 48 .modified = mod, \
|
/linux-4.1.27/drivers/usb/host/ |
D | ehci-sched.c | 1504 unsigned mod = ehci->periodic_size << 3; in iso_stream_schedule() local 1576 now = ehci_read_frame_index(ehci) & (mod - 1); in iso_stream_schedule() 1593 next = (next - base) & (mod - 1); in iso_stream_schedule() 1594 start = (stream->next_uframe - base) & (mod - 1); in iso_stream_schedule() 1605 now2 = (now - base) & (mod - 1); in iso_stream_schedule() 1610 urb, stream->next_uframe, base, period, mod); in iso_stream_schedule() 1631 wrap = mod; in iso_stream_schedule() 1632 now2 += mod; in iso_stream_schedule() 1664 if (unlikely(start + span - period >= mod + wrap)) { in iso_stream_schedule() 1666 urb, start, span - period, mod + wrap); in iso_stream_schedule() [all …]
|
/linux-4.1.27/arch/x86/mm/ |
D | pf_in.c | 468 unsigned char mod; in get_ins_imm_val() local 486 mod = mod_rm >> 6; in get_ins_imm_val() 488 switch (mod) { in get_ins_imm_val()
|
D | Makefile | 27 mmiotrace-y := kmmio.o pf_in.o mmio-mod.o
|
/linux-4.1.27/arch/powerpc/include/asm/ |
D | module.h | 82 int module_trampoline_target(struct module *mod, u32 *trampoline,
|
D | ftrace.h | 56 struct module *mod; member
|
/linux-4.1.27/samples/livepatch/ |
D | livepatch-sample.c | 64 .mod = THIS_MODULE,
|
/linux-4.1.27/drivers/video/console/ |
D | bitblit.c | 116 u32 shift_low = 0, mod = vc->vc_font.width % 8; in bit_putcs_unaligned() local 132 shift_low, mod); in bit_putcs_unaligned() 133 shift_low += mod; in bit_putcs_unaligned() 153 u32 mod = vc->vc_font.width % 8, cnt, pitch, size; in bit_putcs() local 184 if (!mod) in bit_putcs()
|
D | fbcon_ud.c | 125 u32 shift_low = 0, mod = vc->vc_font.width % 8; in ud_putcs_unaligned() local 140 shift_low, mod); in ud_putcs_unaligned() 141 shift_low += mod; in ud_putcs_unaligned() 162 u32 mod = vc->vc_font.width % 8, cnt, pitch, size; in ud_putcs() local 200 if (!mod) in ud_putcs()
|
D | fbcon_ccw.c | 30 int mod = vc->vc_font.height % 8; in ccw_update_attr() local 33 if (mod) in ccw_update_attr() 34 msk <<= (8 - mod); in ccw_update_attr() 36 if (offset > mod) in ccw_update_attr()
|
/linux-4.1.27/arch/sparc/kernel/ |
D | module.c | 57 struct module *mod) in module_frob_arch_sections() argument 66 printk("%s: no symtab found.\n", mod->name); in module_frob_arch_sections()
|
D | ftrace.c | 55 int ftrace_make_nop(struct module *mod, struct dyn_ftrace *rec, unsigned long addr) in ftrace_make_nop() argument
|
/linux-4.1.27/sound/core/seq/ |
D | seq_device.c | 253 int __snd_seq_driver_register(struct snd_seq_driver *drv, struct module *mod) in __snd_seq_driver_register() argument 258 drv->driver.owner = mod; in __snd_seq_driver_register()
|
/linux-4.1.27/include/sound/ |
D | seq_device.h | 82 struct module *mod);
|
/linux-4.1.27/kernel/debug/kdb/ |
D | kdb_main.c | 2013 struct module *mod; in kdb_lsmod() local 2019 list_for_each_entry(mod, kdb_modules, list) { in kdb_lsmod() 2020 if (mod->state == MODULE_STATE_UNFORMED) in kdb_lsmod() 2023 kdb_printf("%-20s%8u 0x%p ", mod->name, in kdb_lsmod() 2024 mod->core_size, (void *)mod); in kdb_lsmod() 2026 kdb_printf("%4d ", module_refcount(mod)); in kdb_lsmod() 2028 if (mod->state == MODULE_STATE_GOING) in kdb_lsmod() 2030 else if (mod->state == MODULE_STATE_COMING) in kdb_lsmod() 2034 kdb_printf(" 0x%p", mod->module_core); in kdb_lsmod() 2040 list_for_each_entry(use, &mod->source_list, in kdb_lsmod()
|
/linux-4.1.27/drivers/s390/cio/ |
D | orb.h | 22 u32 mod:1; /* modification control */ member
|
/linux-4.1.27/arch/s390/kernel/ |
D | module.c | 52 void module_arch_freeing_init(struct module *mod) in module_arch_freeing_init() argument 54 vfree(mod->arch.syminfo); in module_arch_freeing_init() 55 mod->arch.syminfo = NULL; in module_arch_freeing_init()
|
/linux-4.1.27/Documentation/target/ |
D | tcm_mod_builder.txt | 87 -rw-r--r-- 1 root root 459 2010-10-05 03:23 tcm_nab5000.mod.c 88 -rw-r--r-- 1 root root 23896 2010-10-05 03:23 tcm_nab5000.mod.o 89 -rw-r--r-- 1 root root 22655 2010-10-05 03:23 .tcm_nab5000.mod.o.cmd
|
/linux-4.1.27/drivers/isdn/hardware/mISDN/ |
D | mISDNisar.c | 943 int delay = (ch->mod == 3) ? 1000 : 200; in isar_pump_statev_fax() 982 ch->mod = ch->newmod; in isar_pump_statev_fax() 1014 ch->mod = ch->newmod; in isar_pump_statev_fax() 1034 ch->cmd, 1, &ch->mod); in isar_pump_statev_fax() 1367 ch->mod = para; in isar_pump_cmd() 1372 (ch->cmd == PCTRL_CMD_FTM) && (ch->mod == para)) in isar_pump_cmd() 1389 ch->mod = para; in isar_pump_cmd() 1394 (ch->cmd == PCTRL_CMD_FTH) && (ch->mod == para)) in isar_pump_cmd() 1411 ch->mod = para; in isar_pump_cmd() 1416 (ch->cmd == PCTRL_CMD_FRM) && (ch->mod == para)) in isar_pump_cmd() [all …]
|
/linux-4.1.27/include/linux/uwb/ |
D | umc.h | 105 struct module *mod,
|
/linux-4.1.27/Documentation/devicetree/bindings/media/ |
D | img-ir-rev1.txt | 24 "mod": Power modulation clock.
|
/linux-4.1.27/arch/arm64/kernel/ |
D | ftrace.c | 84 int ftrace_make_nop(struct module *mod, struct dyn_ftrace *rec, in ftrace_make_nop() argument
|
/linux-4.1.27/Documentation/devicetree/bindings/mmc/ |
D | sunxi-mmc.txt | 29 clock-names = "ahb", "mod", "output", "sample";
|
/linux-4.1.27/drivers/staging/rts5208/ |
D | rtsx_card.c | 1079 u8 mod; in select_card() local 1082 mod = SD_MOD_SEL; in select_card() 1084 mod = MS_MOD_SEL; in select_card() 1086 mod = XD_MOD_SEL; in select_card() 1088 mod = SPI_MOD_SEL; in select_card() 1094 retval = rtsx_write_register(chip, CARD_SELECT, 0x07, mod); in select_card()
|
/linux-4.1.27/drivers/isdn/hisax/ |
D | isar.c | 1101 p1 = bcs->hw.isar.mod = bcs->hw.isar.newmod; in isar_pump_statev_fax() 1134 p1 = bcs->hw.isar.mod = bcs->hw.isar.newmod; in isar_pump_statev_fax() 1156 &bcs->hw.isar.mod); in isar_pump_statev_fax() 1472 bcs->hw.isar.mod = para; in isar_pump_cmd() 1478 (bcs->hw.isar.mod == para)) { in isar_pump_cmd() 1496 bcs->hw.isar.mod = para; in isar_pump_cmd() 1502 (bcs->hw.isar.mod == para)) { in isar_pump_cmd() 1520 bcs->hw.isar.mod = para; in isar_pump_cmd() 1526 (bcs->hw.isar.mod == para)) { in isar_pump_cmd() 1544 bcs->hw.isar.mod = para; in isar_pump_cmd() [all …]
|
/linux-4.1.27/arch/ia64/lib/ |
D | idiv64.S | 20 # define OP mod
|
D | idiv32.S | 20 # define OP mod
|
/linux-4.1.27/fs/xfs/libxfs/ |
D | xfs_alloc.h | 109 xfs_extlen_t mod; /* mod value for extent size */ member
|
/linux-4.1.27/ |
D | .gitignore | 20 *.mod.c
|
/linux-4.1.27/Documentation/devicetree/bindings/dma/ |
D | sun6i-dma.txt | 41 clock-names = "ahb", "mod";
|
/linux-4.1.27/arch/arm/boot/dts/ |
D | am3517.dtsi | 36 ti,davinci-ctrl-mod-reg-offset = <0>;
|