/kernel/linux/linux-5.10/drivers/usb/serial/ |
H A D | usb_debug.c | 50 static void usb_debug_break_ctl(struct tty_struct *tty, int break_state) in usb_debug_break_ctl() argument 53 if (!break_state) in usb_debug_break_ctl()
|
H A D | ch341.c | 593 static void ch341_simulate_break(struct tty_struct *tty, int break_state) in ch341_simulate_break() argument 600 if (break_state != 0) { in ch341_simulate_break() 656 static void ch341_break_ctl(struct tty_struct *tty, int break_state) in ch341_break_ctl() argument 667 ch341_simulate_break(tty, break_state); in ch341_break_ctl() 684 if (break_state != 0) { in ch341_break_ctl()
|
H A D | belkin_sa.c | 48 static void belkin_sa_break_ctl(struct tty_struct *tty, int break_state); 420 static void belkin_sa_break_ctl(struct tty_struct *tty, int break_state) in belkin_sa_break_ctl() argument 425 if (BSA_USB_CMD(BELKIN_SA_SET_BREAK_REQUEST, break_state ? 1 : 0) < 0) in belkin_sa_break_ctl() 426 dev_err(&port->dev, "Set break_ctl %d\n", break_state); in belkin_sa_break_ctl()
|
H A D | upd78f0730.c | 247 static void upd78f0730_break_ctl(struct tty_struct *tty, int break_state) in upd78f0730_break_ctl() argument 257 if (break_state) { in upd78f0730_break_ctl()
|
H A D | mct_u232.c | 49 static void mct_u232_break_ctl(struct tty_struct *tty, int break_state); 681 static void mct_u232_break_ctl(struct tty_struct *tty, int break_state) in mct_u232_break_ctl() argument 691 if (break_state) in mct_u232_break_ctl()
|
H A D | keyspan_pda.c | 285 static void keyspan_pda_break_ctl(struct tty_struct *tty, int break_state) in keyspan_pda_break_ctl() argument 292 if (break_state == -1) in keyspan_pda_break_ctl()
|
H A D | ark3116.c | 464 static void ark3116_break_ctl(struct tty_struct *tty, int break_state) in ark3116_break_ctl() argument 472 if (break_state) in ark3116_break_ctl()
|
H A D | whiteheat.c | 93 static void whiteheat_break_ctl(struct tty_struct *tty, int break_state); 469 static void whiteheat_break_ctl(struct tty_struct *tty, int break_state) in whiteheat_break_ctl() argument 472 firm_set_break(port, break_state); in whiteheat_break_ctl()
|
/kernel/linux/linux-6.6/drivers/usb/serial/ |
H A D | usb_debug.c | 50 static int usb_debug_break_ctl(struct tty_struct *tty, int break_state) in usb_debug_break_ctl() argument 55 if (!break_state) in usb_debug_break_ctl()
|
H A D | ch341.c | 565 static int ch341_simulate_break(struct tty_struct *tty, int break_state) in ch341_simulate_break() argument 572 if (break_state != 0) { in ch341_simulate_break() 633 static int ch341_break_ctl(struct tty_struct *tty, int break_state) in ch341_break_ctl() argument 644 return ch341_simulate_break(tty, break_state); in ch341_break_ctl() 657 if (break_state != 0) { in ch341_break_ctl()
|
H A D | belkin_sa.c | 49 static int belkin_sa_break_ctl(struct tty_struct *tty, int break_state); 402 static int belkin_sa_break_ctl(struct tty_struct *tty, int break_state) in belkin_sa_break_ctl() argument 408 ret = BSA_USB_CMD(BELKIN_SA_SET_BREAK_REQUEST, break_state ? 1 : 0); in belkin_sa_break_ctl() 410 dev_err(&port->dev, "Set break_ctl %d\n", break_state); in belkin_sa_break_ctl()
|
H A D | upd78f0730.c | 241 static int upd78f0730_break_ctl(struct tty_struct *tty, int break_state) in upd78f0730_break_ctl() argument 252 if (break_state) { in upd78f0730_break_ctl()
|
H A D | mct_u232.c | 50 static int mct_u232_break_ctl(struct tty_struct *tty, int break_state); 680 static int mct_u232_break_ctl(struct tty_struct *tty, int break_state) in mct_u232_break_ctl() argument 690 if (break_state) in mct_u232_break_ctl()
|
H A D | whiteheat.c | 90 static int whiteheat_break_ctl(struct tty_struct *tty, int break_state); 452 static int whiteheat_break_ctl(struct tty_struct *tty, int break_state) in whiteheat_break_ctl() argument 456 return firm_set_break(port, break_state); in whiteheat_break_ctl()
|
H A D | ark3116.c | 436 static int ark3116_break_ctl(struct tty_struct *tty, int break_state) in ark3116_break_ctl() argument 445 if (break_state) in ark3116_break_ctl()
|
H A D | keyspan_pda.c | 302 static int keyspan_pda_break_ctl(struct tty_struct *tty, int break_state) in keyspan_pda_break_ctl() argument 309 if (break_state == -1) in keyspan_pda_break_ctl()
|
/kernel/linux/linux-6.6/include/linux/ |
H A D | serdev.h | 96 int (*break_ctl)(struct serdev_controller *ctrl, unsigned int break_state); 207 int serdev_device_break_ctl(struct serdev_device *serdev, int break_state); 261 static inline int serdev_device_break_ctl(struct serdev_device *serdev, int break_state) in serdev_device_break_ctl() argument
|
/kernel/linux/linux-6.6/drivers/tty/serdev/ |
H A D | serdev-ttyport.c | 250 static int ttyport_break_ctl(struct serdev_controller *ctrl, unsigned int break_state) in ttyport_break_ctl() argument 258 return tty->ops->break_ctl(tty, break_state); in ttyport_break_ctl()
|
/kernel/linux/linux-5.10/drivers/tty/serial/ |
H A D | 21285.c | 204 static void serial21285_break_ctl(struct uart_port *port, int break_state) in serial21285_break_ctl() argument 211 if (break_state) in serial21285_break_ctl()
|
H A D | clps711x.c | 208 static void uart_clps711x_break_ctl(struct uart_port *port, int break_state) in uart_clps711x_break_ctl() argument 213 if (break_state) in uart_clps711x_break_ctl()
|
H A D | sunhv.c | 294 static void sunhv_break_ctl(struct uart_port *port, int break_state) in sunhv_break_ctl() argument 296 if (break_state) { in sunhv_break_ctl()
|
/kernel/linux/linux-6.6/drivers/tty/serial/ |
H A D | 21285.c | 183 static void serial21285_break_ctl(struct uart_port *port, int break_state) in serial21285_break_ctl() argument 190 if (break_state) in serial21285_break_ctl()
|
H A D | altera_uart.c | 162 static void altera_uart_break_ctl(struct uart_port *port, int break_state) in altera_uart_break_ctl() argument 168 if (break_state == -1) in altera_uart_break_ctl()
|
H A D | sunhv.c | 292 static void sunhv_break_ctl(struct uart_port *port, int break_state) in sunhv_break_ctl() argument 294 if (break_state) { in sunhv_break_ctl()
|
H A D | clps711x.c | 208 static void uart_clps711x_break_ctl(struct uart_port *port, int break_state) in uart_clps711x_break_ctl() argument 213 if (break_state) in uart_clps711x_break_ctl()
|