Home
last modified time | relevance | path

Searched refs:bindex (Results 1 – 6 of 6) sorted by relevance

/linux/drivers/usb/serial/
H A Dkeyspan_pda.c248 int bindex; in keyspan_pda_setbaud() local
252 bindex = 0; in keyspan_pda_setbaud()
255 bindex = 1; in keyspan_pda_setbaud()
258 bindex = 2; in keyspan_pda_setbaud()
261 bindex = 3; in keyspan_pda_setbaud()
264 bindex = 4; in keyspan_pda_setbaud()
267 bindex = 5; in keyspan_pda_setbaud()
270 bindex = 6; in keyspan_pda_setbaud()
273 bindex = 7; in keyspan_pda_setbaud()
276 bindex = 8; in keyspan_pda_setbaud()
[all …]
/linux/drivers/tty/serial/
H A Dtimbuart.c278 short bindex; in timbuart_set_termios() local
282 bindex = get_bindex(baud); in timbuart_set_termios()
283 dev_dbg(port->dev, "%s - bindex %d\n", __func__, bindex); in timbuart_set_termios()
285 if (bindex < 0) in timbuart_set_termios()
286 bindex = 0; in timbuart_set_termios()
287 baud = baudrates[bindex]; in timbuart_set_termios()
296 iowrite8((u8)bindex, port->membase + TIMBUART_BAUDRATE); in timbuart_set_termios()
/linux/drivers/gpio/
H A Dgpio-aspeed.c941 int rc = 0, bindex, offset = gpiod_hwgpio(desc); in aspeed_gpio_copro_grab_gpio() local
953 bindex = offset >> 3; in aspeed_gpio_copro_grab_gpio()
958 if (gpio->cf_copro_bankmap[bindex] == 0xff) in aspeed_gpio_copro_grab_gpio()
961 gpio->cf_copro_bankmap[bindex]++; in aspeed_gpio_copro_grab_gpio()
964 if (gpio->cf_copro_bankmap[bindex] == 1) in aspeed_gpio_copro_grab_gpio()
986 int rc = 0, bindex, offset = gpiod_hwgpio(desc); in aspeed_gpio_copro_release_gpio() local
996 bindex = offset >> 3; in aspeed_gpio_copro_release_gpio()
1001 if (gpio->cf_copro_bankmap[bindex] == 0) in aspeed_gpio_copro_release_gpio()
1004 gpio->cf_copro_bankmap[bindex]--; in aspeed_gpio_copro_release_gpio()
1007 if (gpio->cf_copro_bankmap[bindex] == 0) in aspeed_gpio_copro_release_gpio()
/linux/net/rxrpc/
H A Dconn_client.c677 unsigned int bindex; in rxrpc_unbundle_conn() local
685 bindex = conn->bundle_shift / RXRPC_MAXCALLS; in rxrpc_unbundle_conn()
686 if (bundle->conns[bindex] == conn) { in rxrpc_unbundle_conn()
687 _debug("clear slot %u", bindex); in rxrpc_unbundle_conn()
688 bundle->conns[bindex] = NULL; in rxrpc_unbundle_conn()
689 bundle->conn_ids[bindex] = 0; in rxrpc_unbundle_conn()
/linux/drivers/staging/media/ipu3/
H A Dipu3-css.h104 unsigned int bindex; member
H A Dipu3-css-fw.c79 &css->fwp->binary_header[css->pipes[pipe].bindex]; in imgu_css_fw_pipeline_params()