Home
last modified time | relevance | path

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

/drivers/mmc/core/
Dsdio_uart.c1056 struct sdio_func_tuple *tpl; in sdio_uart_probe() local
1057 for (tpl = func->tuples; tpl; tpl = tpl->next) { in sdio_uart_probe()
1058 if (tpl->code != 0x91) in sdio_uart_probe()
1060 if (tpl->size < 10) in sdio_uart_probe()
1062 if (tpl->data[1] == 0) /* SUBTPL_SIOREG */ in sdio_uart_probe()
1065 if (!tpl) { in sdio_uart_probe()
1072 sdio_func_id(func), tpl->data[2], tpl->data[3]); in sdio_uart_probe()
1073 port->regs_offset = (tpl->data[4] << 0) | in sdio_uart_probe()
1074 (tpl->data[5] << 8) | in sdio_uart_probe()
1075 (tpl->data[6] << 16); in sdio_uart_probe()
[all …]
Dsdio_cis.c109 const struct cis_tpl *tpl, int tpl_count, in cis_tpl_parse() argument
116 for (i = 0; i < tpl_count; i++, tpl++) { in cis_tpl_parse()
117 if (tpl->code == code) in cis_tpl_parse()
121 if (size >= tpl->min_size) { in cis_tpl_parse()
122 if (tpl->parse) in cis_tpl_parse()
123 ret = tpl->parse(card, func, buf, size); in cis_tpl_parse()
/drivers/i2c/busses/
Di2c-img-scb.c299 unsigned int tp2s, tpl, tph; member
313 .tpl = 4700,
325 .tpl = 600,
1281 data = timing.tpl / clk_period; in img_i2c_init()