Home
last modified time | relevance | path

Searched refs:tpl (Results 1 – 11 of 11) sorted by relevance

/linux/drivers/mmc/core/
H A Dsdio_uart.c1038 struct sdio_func_tuple *tpl; in sdio_uart_probe() local
1039 for (tpl = func->tuples; tpl; tpl = tpl->next) { in sdio_uart_probe()
1040 if (tpl->code != 0x91) in sdio_uart_probe()
1042 if (tpl->size < 10) in sdio_uart_probe()
1044 if (tpl->data[1] == 0) /* SUBTPL_SIOREG */ in sdio_uart_probe()
1047 if (!tpl) { in sdio_uart_probe()
1054 sdio_func_id(func), tpl->data[2], tpl->data[3]); in sdio_uart_probe()
1055 port->regs_offset = (tpl->data[4] << 0) | in sdio_uart_probe()
1056 (tpl->data[5] << 8) | in sdio_uart_probe()
1057 (tpl->data[6] << 16); in sdio_uart_probe()
[all …]
H A Dsdio_cis.c122 const struct cis_tpl *tpl, int tpl_count, in cis_tpl_parse() argument
129 for (i = 0; i < tpl_count; i++, tpl++) { in cis_tpl_parse()
130 if (tpl->code == code) in cis_tpl_parse()
134 if (size >= tpl->min_size) { in cis_tpl_parse()
135 if (tpl->parse) in cis_tpl_parse()
136 ret = tpl->parse(card, func, buf, size); in cis_tpl_parse()
/linux/arch/x86/kernel/
H A Dalternative.c2812 static __always_inline void *text_poke_addr(const struct smp_text_poke_loc *tpl) in text_poke_addr() argument
2814 return _stext + tpl->rel_addr; in text_poke_addr()
2828 struct smp_text_poke_loc *tpl; in smp_text_poke_int3_handler() local
2857 tpl = __inline_bsearch(ip, text_poke_array.vec, text_poke_array.nr_entries, in smp_text_poke_int3_handler()
2860 if (!tpl) in smp_text_poke_int3_handler()
2863 tpl = text_poke_array.vec; in smp_text_poke_int3_handler()
2864 if (text_poke_addr(tpl) != ip) in smp_text_poke_int3_handler()
2868 ip += tpl->len; in smp_text_poke_int3_handler()
2870 switch (tpl->opcode) { in smp_text_poke_int3_handler()
2883 int3_emulate_call(regs, (long)ip + tpl->disp); in smp_text_poke_int3_handler()
[all …]
/linux/tools/testing/selftests/tc-testing/plugin-lib/
H A DscapyPlugin.py51 tpl = Template(scapyinfo['iface'])
52 scapyinfo['iface'] = tpl.safe_substitute(NAMES)
/linux/arch/x86/include/asm/
H A Defi.h256 #define __efi64_argmap_create_event(type, tpl, f, c, event) \ argument
257 ((type), (tpl), (f), (c), efi64_zero_upper(event))
/linux/net/xfrm/
H A Dxfrm_iptfs.c259 static struct sk_buff *iptfs_alloc_skb(struct sk_buff *tpl, u32 len, bool l3resv) in iptfs_alloc_skb() argument
267 struct dst_entry *dst = skb_dst(tpl); in iptfs_alloc_skb()
282 skb->dev = tpl->dev; in iptfs_alloc_skb()
283 __skb_ext_copy(skb, tpl); in iptfs_alloc_skb()
287 skb_dst_copy(skb, tpl); in iptfs_alloc_skb()
532 iptfs_pskb_add_frags(struct sk_buff *tpl, struct iptfs_skb_frag_walk *walk, in iptfs_pskb_add_frags() argument
537 skb = iptfs_alloc_skb(tpl, copy_len, false); in iptfs_pskb_add_frags()
/linux/drivers/i2c/busses/
H A Di2c-img-scb.c299 unsigned int tp2s, tpl, tph; member
313 .tpl = 4700,
325 .tpl = 600,
1276 data = timing.tpl / clk_period; in img_i2c_init()
/linux/drivers/dma/ti/
H A Dk3-udma.c1343 enum udma_tp_level tpl, \
1354 if (tpl >= ud->res##_tpl.levels) \
1355 tpl = ud->res##_tpl.levels - 1; \
1357 start = ud->res##_tpl.start_idx[tpl]; \
1377 enum udma_tp_level tpl; in bcdma_get_bchan() local
1391 tpl = 0; in bcdma_get_bchan()
1393 tpl = ud->bchan_tpl.levels - 1; in bcdma_get_bchan()
1395 uc->bchan = __udma_reserve_bchan(ud, tpl, -1); in bcdma_get_bchan()
1881 u8 tpl; in udma_tisci_m2m_channel_config() local
1889 tpl = udma_get_chan_tpl_index(&ud->tchan_tpl, tchan->id); in udma_tisci_m2m_channel_config()
[all …]
/linux/arch/arm/boot/dts/nxp/imx/
H A Dimx6ull-dhcor-maveo-box.dts179 tpl-support;
H A Dimx6ull-dhcom-som.dtsi315 tpl-support;
/linux/sound/pci/emu10k1/
H A Demumixer.c28 static int add_ctls(struct snd_emu10k1 *emu, const struct snd_kcontrol_new *tpl, in add_ctls() argument
31 struct snd_kcontrol_new kctl = *tpl; in add_ctls()