Commit 5d420399 authored by Ilpo Järvinen's avatar Ilpo Järvinen Committed by Greg Kroah-Hartman

tty: Convert ->dtr_rts() to take bool argument

Convert the raise/on parameter in ->dtr_rts() to bool through the
callchain. The parameter is used like bool. In USB serial, there
remains a few implicit bool -> larger type conversions because some
devices use u8 in their control messages.

In moxa_tiocmget(), dtr variable was reused for line status which
requires int so use a separate variable for status.
Reviewed-by: default avatarJiri Slaby <jirislaby@kernel.org>
Acked-by: Ulf Hansson <ulf.hansson@linaro.org> # For MMC
Signed-off-by: default avatarIlpo Järvinen <ilpo.jarvinen@linux.intel.com>
Link: https://lore.kernel.org/r/20230117090358.4796-8-ilpo.jarvinen@linux.intel.comSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b300fb26
...@@ -378,7 +378,7 @@ static void async_mode(MGSLPC_INFO *info); ...@@ -378,7 +378,7 @@ static void async_mode(MGSLPC_INFO *info);
static void tx_timeout(struct timer_list *t); static void tx_timeout(struct timer_list *t);
static bool carrier_raised(struct tty_port *port); static bool carrier_raised(struct tty_port *port);
static void dtr_rts(struct tty_port *port, int onoff); static void dtr_rts(struct tty_port *port, bool onoff);
#if SYNCLINK_GENERIC_HDLC #if SYNCLINK_GENERIC_HDLC
#define dev_to_port(D) (dev_to_hdlc(D)->priv) #define dev_to_port(D) (dev_to_hdlc(D)->priv)
...@@ -2442,7 +2442,7 @@ static bool carrier_raised(struct tty_port *port) ...@@ -2442,7 +2442,7 @@ static bool carrier_raised(struct tty_port *port)
return info->serial_signals & SerialSignal_DCD; return info->serial_signals & SerialSignal_DCD;
} }
static void dtr_rts(struct tty_port *port, int onoff) static void dtr_rts(struct tty_port *port, bool onoff)
{ {
MGSLPC_INFO *info = container_of(port, MGSLPC_INFO, port); MGSLPC_INFO *info = container_of(port, MGSLPC_INFO, port);
unsigned long flags; unsigned long flags;
......
...@@ -548,14 +548,14 @@ static bool uart_carrier_raised(struct tty_port *tport) ...@@ -548,14 +548,14 @@ static bool uart_carrier_raised(struct tty_port *tport)
* adjusted during an open, close and hangup. * adjusted during an open, close and hangup.
*/ */
static void uart_dtr_rts(struct tty_port *tport, int onoff) static void uart_dtr_rts(struct tty_port *tport, bool onoff)
{ {
struct sdio_uart_port *port = struct sdio_uart_port *port =
container_of(tport, struct sdio_uart_port, port); container_of(tport, struct sdio_uart_port, port);
int ret = sdio_uart_claim_func(port); int ret = sdio_uart_claim_func(port);
if (ret) if (ret)
return; return;
if (onoff == 0) if (!onoff)
sdio_uart_clear_mctrl(port, TIOCM_DTR | TIOCM_RTS); sdio_uart_clear_mctrl(port, TIOCM_DTR | TIOCM_RTS);
else else
sdio_uart_set_mctrl(port, TIOCM_DTR | TIOCM_RTS); sdio_uart_set_mctrl(port, TIOCM_DTR | TIOCM_RTS);
......
...@@ -701,7 +701,7 @@ static int gb_tty_ioctl(struct tty_struct *tty, unsigned int cmd, ...@@ -701,7 +701,7 @@ static int gb_tty_ioctl(struct tty_struct *tty, unsigned int cmd,
return -ENOIOCTLCMD; return -ENOIOCTLCMD;
} }
static void gb_tty_dtr_rts(struct tty_port *port, int on) static void gb_tty_dtr_rts(struct tty_port *port, bool on)
{ {
struct gb_tty *gb_tty; struct gb_tty *gb_tty;
u8 newctrl; u8 newctrl;
......
...@@ -1459,7 +1459,7 @@ static bool amiga_carrier_raised(struct tty_port *port) ...@@ -1459,7 +1459,7 @@ static bool amiga_carrier_raised(struct tty_port *port)
return !(ciab.pra & SER_DCD); return !(ciab.pra & SER_DCD);
} }
static void amiga_dtr_rts(struct tty_port *port, int raise) static void amiga_dtr_rts(struct tty_port *port, bool raise)
{ {
struct serial_state *info = container_of(port, struct serial_state, struct serial_state *info = container_of(port, struct serial_state,
tport); tport);
......
...@@ -376,7 +376,7 @@ static int hvc_open(struct tty_struct *tty, struct file * filp) ...@@ -376,7 +376,7 @@ static int hvc_open(struct tty_struct *tty, struct file * filp)
/* We are ready... raise DTR/RTS */ /* We are ready... raise DTR/RTS */
if (C_BAUD(tty)) if (C_BAUD(tty))
if (hp->ops->dtr_rts) if (hp->ops->dtr_rts)
hp->ops->dtr_rts(hp, 1); hp->ops->dtr_rts(hp, true);
tty_port_set_initialized(&hp->port, true); tty_port_set_initialized(&hp->port, true);
} }
...@@ -406,7 +406,7 @@ static void hvc_close(struct tty_struct *tty, struct file * filp) ...@@ -406,7 +406,7 @@ static void hvc_close(struct tty_struct *tty, struct file * filp)
if (C_HUPCL(tty)) if (C_HUPCL(tty))
if (hp->ops->dtr_rts) if (hp->ops->dtr_rts)
hp->ops->dtr_rts(hp, 0); hp->ops->dtr_rts(hp, false);
if (hp->ops->notifier_del) if (hp->ops->notifier_del)
hp->ops->notifier_del(hp, hp->data); hp->ops->notifier_del(hp, hp->data);
......
...@@ -66,7 +66,7 @@ struct hv_ops { ...@@ -66,7 +66,7 @@ struct hv_ops {
int (*tiocmset)(struct hvc_struct *hp, unsigned int set, unsigned int clear); int (*tiocmset)(struct hvc_struct *hp, unsigned int set, unsigned int clear);
/* Callbacks to handle tty ports */ /* Callbacks to handle tty ports */
void (*dtr_rts)(struct hvc_struct *hp, int raise); void (*dtr_rts)(struct hvc_struct *hp, bool raise);
}; };
/* Register a vterm and a slot index for use as a console (console_init) */ /* Register a vterm and a slot index for use as a console (console_init) */
......
...@@ -658,13 +658,13 @@ static void hvc_iucv_notifier_hangup(struct hvc_struct *hp, int id) ...@@ -658,13 +658,13 @@ static void hvc_iucv_notifier_hangup(struct hvc_struct *hp, int id)
/** /**
* hvc_iucv_dtr_rts() - HVC notifier for handling DTR/RTS * hvc_iucv_dtr_rts() - HVC notifier for handling DTR/RTS
* @hp: Pointer the HVC device (struct hvc_struct) * @hp: Pointer the HVC device (struct hvc_struct)
* @raise: Non-zero to raise or zero to lower DTR/RTS lines * @raise: True to raise or false to lower DTR/RTS lines
* *
* This routine notifies the HVC back-end to raise or lower DTR/RTS * This routine notifies the HVC back-end to raise or lower DTR/RTS
* lines. Raising DTR/RTS is ignored. Lowering DTR/RTS indicates to * lines. Raising DTR/RTS is ignored. Lowering DTR/RTS indicates to
* drop the IUCV connection (similar to hang up the modem). * drop the IUCV connection (similar to hang up the modem).
*/ */
static void hvc_iucv_dtr_rts(struct hvc_struct *hp, int raise) static void hvc_iucv_dtr_rts(struct hvc_struct *hp, bool raise)
{ {
struct hvc_iucv_private *priv; struct hvc_iucv_private *priv;
struct iucv_path *path; struct iucv_path *path;
......
...@@ -502,15 +502,15 @@ static void moxa_poll(struct timer_list *); ...@@ -502,15 +502,15 @@ static void moxa_poll(struct timer_list *);
static void moxa_set_tty_param(struct tty_struct *, const struct ktermios *); static void moxa_set_tty_param(struct tty_struct *, const struct ktermios *);
static void moxa_shutdown(struct tty_port *); static void moxa_shutdown(struct tty_port *);
static bool moxa_carrier_raised(struct tty_port *); static bool moxa_carrier_raised(struct tty_port *);
static void moxa_dtr_rts(struct tty_port *, int); static void moxa_dtr_rts(struct tty_port *, bool);
/* /*
* moxa board interface functions: * moxa board interface functions:
*/ */
static void MoxaPortEnable(struct moxa_port *); static void MoxaPortEnable(struct moxa_port *);
static void MoxaPortDisable(struct moxa_port *); static void MoxaPortDisable(struct moxa_port *);
static int MoxaPortSetTermio(struct moxa_port *, struct ktermios *, speed_t); static int MoxaPortSetTermio(struct moxa_port *, struct ktermios *, speed_t);
static int MoxaPortGetLineOut(struct moxa_port *, int *, int *); static int MoxaPortGetLineOut(struct moxa_port *, bool *, bool *);
static void MoxaPortLineCtrl(struct moxa_port *, int, int); static void MoxaPortLineCtrl(struct moxa_port *, bool, bool);
static void MoxaPortFlowCtrl(struct moxa_port *, int, int, int, int, int); static void MoxaPortFlowCtrl(struct moxa_port *, int, int, int, int, int);
static int MoxaPortLineStatus(struct moxa_port *); static int MoxaPortLineStatus(struct moxa_port *);
static void MoxaPortFlushData(struct moxa_port *, int); static void MoxaPortFlushData(struct moxa_port *, int);
...@@ -1443,7 +1443,7 @@ static bool moxa_carrier_raised(struct tty_port *port) ...@@ -1443,7 +1443,7 @@ static bool moxa_carrier_raised(struct tty_port *port)
return dcd; return dcd;
} }
static void moxa_dtr_rts(struct tty_port *port, int onoff) static void moxa_dtr_rts(struct tty_port *port, bool onoff)
{ {
struct moxa_port *ch = container_of(port, struct moxa_port, port); struct moxa_port *ch = container_of(port, struct moxa_port, port);
MoxaPortLineCtrl(ch, onoff, onoff); MoxaPortLineCtrl(ch, onoff, onoff);
...@@ -1481,7 +1481,7 @@ static int moxa_open(struct tty_struct *tty, struct file *filp) ...@@ -1481,7 +1481,7 @@ static int moxa_open(struct tty_struct *tty, struct file *filp)
if (!tty_port_initialized(&ch->port)) { if (!tty_port_initialized(&ch->port)) {
ch->statusflags = 0; ch->statusflags = 0;
moxa_set_tty_param(tty, &tty->termios); moxa_set_tty_param(tty, &tty->termios);
MoxaPortLineCtrl(ch, 1, 1); MoxaPortLineCtrl(ch, true, true);
MoxaPortEnable(ch); MoxaPortEnable(ch);
MoxaSetFifo(ch, ch->type == PORT_16550A); MoxaSetFifo(ch, ch->type == PORT_16550A);
tty_port_set_initialized(&ch->port, true); tty_port_set_initialized(&ch->port, true);
...@@ -1557,19 +1557,21 @@ static unsigned int moxa_chars_in_buffer(struct tty_struct *tty) ...@@ -1557,19 +1557,21 @@ static unsigned int moxa_chars_in_buffer(struct tty_struct *tty)
static int moxa_tiocmget(struct tty_struct *tty) static int moxa_tiocmget(struct tty_struct *tty)
{ {
struct moxa_port *ch = tty->driver_data; struct moxa_port *ch = tty->driver_data;
int flag = 0, dtr, rts; bool dtr, rts;
int flag = 0;
int status;
MoxaPortGetLineOut(ch, &dtr, &rts); MoxaPortGetLineOut(ch, &dtr, &rts);
if (dtr) if (dtr)
flag |= TIOCM_DTR; flag |= TIOCM_DTR;
if (rts) if (rts)
flag |= TIOCM_RTS; flag |= TIOCM_RTS;
dtr = MoxaPortLineStatus(ch); status = MoxaPortLineStatus(ch);
if (dtr & 1) if (status & 1)
flag |= TIOCM_CTS; flag |= TIOCM_CTS;
if (dtr & 2) if (status & 2)
flag |= TIOCM_DSR; flag |= TIOCM_DSR;
if (dtr & 4) if (status & 4)
flag |= TIOCM_CD; flag |= TIOCM_CD;
return flag; return flag;
} }
...@@ -1578,7 +1580,7 @@ static int moxa_tiocmset(struct tty_struct *tty, ...@@ -1578,7 +1580,7 @@ static int moxa_tiocmset(struct tty_struct *tty,
unsigned int set, unsigned int clear) unsigned int set, unsigned int clear)
{ {
struct moxa_port *ch; struct moxa_port *ch;
int dtr, rts; bool dtr, rts;
mutex_lock(&moxa_openlock); mutex_lock(&moxa_openlock);
ch = tty->driver_data; ch = tty->driver_data;
...@@ -1589,13 +1591,13 @@ static int moxa_tiocmset(struct tty_struct *tty, ...@@ -1589,13 +1591,13 @@ static int moxa_tiocmset(struct tty_struct *tty,
MoxaPortGetLineOut(ch, &dtr, &rts); MoxaPortGetLineOut(ch, &dtr, &rts);
if (set & TIOCM_RTS) if (set & TIOCM_RTS)
rts = 1; rts = true;
if (set & TIOCM_DTR) if (set & TIOCM_DTR)
dtr = 1; dtr = true;
if (clear & TIOCM_RTS) if (clear & TIOCM_RTS)
rts = 0; rts = false;
if (clear & TIOCM_DTR) if (clear & TIOCM_DTR)
dtr = 0; dtr = false;
MoxaPortLineCtrl(ch, dtr, rts); MoxaPortLineCtrl(ch, dtr, rts);
mutex_unlock(&moxa_openlock); mutex_unlock(&moxa_openlock);
return 0; return 0;
...@@ -1877,12 +1879,12 @@ static void MoxaPortFlushData(struct moxa_port *port, int mode) ...@@ -1877,12 +1879,12 @@ static void MoxaPortFlushData(struct moxa_port *port, int mode)
* *
* Function 13: Get the DTR/RTS state of this port. * Function 13: Get the DTR/RTS state of this port.
* Syntax: * Syntax:
* int MoxaPortGetLineOut(int port, int *dtrState, int *rtsState); * int MoxaPortGetLineOut(int port, bool *dtrState, bool *rtsState);
* int port : port number (0 - 127) * int port : port number (0 - 127)
* int * dtrState : pointer to INT to receive the current DTR * bool * dtrState : pointer to bool to receive the current DTR
* state. (if NULL, this function will not * state. (if NULL, this function will not
* write to this address) * write to this address)
* int * rtsState : pointer to INT to receive the current RTS * bool * rtsState : pointer to bool to receive the current RTS
* state. (if NULL, this function will not * state. (if NULL, this function will not
* write to this address) * write to this address)
* *
...@@ -1892,10 +1894,10 @@ static void MoxaPortFlushData(struct moxa_port *port, int mode) ...@@ -1892,10 +1894,10 @@ static void MoxaPortFlushData(struct moxa_port *port, int mode)
* *
* Function 14: Setting the DTR/RTS output state of this port. * Function 14: Setting the DTR/RTS output state of this port.
* Syntax: * Syntax:
* void MoxaPortLineCtrl(int port, int dtrState, int rtsState); * void MoxaPortLineCtrl(int port, bool dtrState, bool rtsState);
* int port : port number (0 - 127) * int port : port number (0 - 127)
* int dtrState : DTR output state (0: off, 1: on) * bool dtrState : DTR output state
* int rtsState : RTS output state (0: off, 1: on) * bool rtsState : RTS output state
* *
* *
* Function 15: Setting the flow control of this port. * Function 15: Setting the flow control of this port.
...@@ -2103,18 +2105,18 @@ static int MoxaPortSetTermio(struct moxa_port *port, struct ktermios *termio, ...@@ -2103,18 +2105,18 @@ static int MoxaPortSetTermio(struct moxa_port *port, struct ktermios *termio,
return baud; return baud;
} }
static int MoxaPortGetLineOut(struct moxa_port *port, int *dtrState, static int MoxaPortGetLineOut(struct moxa_port *port, bool *dtrState,
int *rtsState) bool *rtsState)
{ {
if (dtrState) if (dtrState)
*dtrState = !!(port->lineCtrl & DTR_ON); *dtrState = port->lineCtrl & DTR_ON;
if (rtsState) if (rtsState)
*rtsState = !!(port->lineCtrl & RTS_ON); *rtsState = port->lineCtrl & RTS_ON;
return 0; return 0;
} }
static void MoxaPortLineCtrl(struct moxa_port *port, int dtr, int rts) static void MoxaPortLineCtrl(struct moxa_port *port, bool dtr, bool rts)
{ {
u8 mode = 0; u8 mode = 0;
......
...@@ -465,7 +465,7 @@ static bool mxser_carrier_raised(struct tty_port *port) ...@@ -465,7 +465,7 @@ static bool mxser_carrier_raised(struct tty_port *port)
return inb(mp->ioaddr + UART_MSR) & UART_MSR_DCD; return inb(mp->ioaddr + UART_MSR) & UART_MSR_DCD;
} }
static void mxser_dtr_rts(struct tty_port *port, int on) static void mxser_dtr_rts(struct tty_port *port, bool on)
{ {
struct mxser_port *mp = container_of(port, struct mxser_port, port); struct mxser_port *mp = container_of(port, struct mxser_port, port);
unsigned long flags; unsigned long flags;
......
...@@ -3792,7 +3792,7 @@ static bool gsm_carrier_raised(struct tty_port *port) ...@@ -3792,7 +3792,7 @@ static bool gsm_carrier_raised(struct tty_port *port)
return dlci->modem_rx & TIOCM_CD; return dlci->modem_rx & TIOCM_CD;
} }
static void gsm_dtr_rts(struct tty_port *port, int onoff) static void gsm_dtr_rts(struct tty_port *port, bool onoff)
{ {
struct gsm_dlci *dlci = container_of(port, struct gsm_dlci, port); struct gsm_dlci *dlci = container_of(port, struct gsm_dlci, port);
unsigned int modem_tx = dlci->modem_tx; unsigned int modem_tx = dlci->modem_tx;
......
...@@ -169,7 +169,7 @@ uart_update_mctrl(struct uart_port *port, unsigned int set, unsigned int clear) ...@@ -169,7 +169,7 @@ uart_update_mctrl(struct uart_port *port, unsigned int set, unsigned int clear)
#define uart_set_mctrl(port, set) uart_update_mctrl(port, set, 0) #define uart_set_mctrl(port, set) uart_update_mctrl(port, set, 0)
#define uart_clear_mctrl(port, clear) uart_update_mctrl(port, 0, clear) #define uart_clear_mctrl(port, clear) uart_update_mctrl(port, 0, clear)
static void uart_port_dtr_rts(struct uart_port *uport, int raise) static void uart_port_dtr_rts(struct uart_port *uport, bool raise)
{ {
if (raise) if (raise)
uart_set_mctrl(uport, TIOCM_DTR | TIOCM_RTS); uart_set_mctrl(uport, TIOCM_DTR | TIOCM_RTS);
...@@ -239,7 +239,7 @@ static int uart_port_startup(struct tty_struct *tty, struct uart_state *state, ...@@ -239,7 +239,7 @@ static int uart_port_startup(struct tty_struct *tty, struct uart_state *state,
* port is open and ready to respond. * port is open and ready to respond.
*/ */
if (init_hw && C_BAUD(tty)) if (init_hw && C_BAUD(tty))
uart_port_dtr_rts(uport, 1); uart_port_dtr_rts(uport, true);
} }
/* /*
...@@ -302,7 +302,7 @@ static void uart_shutdown(struct tty_struct *tty, struct uart_state *state) ...@@ -302,7 +302,7 @@ static void uart_shutdown(struct tty_struct *tty, struct uart_state *state)
} }
if (!tty || C_HUPCL(tty)) if (!tty || C_HUPCL(tty))
uart_port_dtr_rts(uport, 0); uart_port_dtr_rts(uport, false);
uart_port_shutdown(port); uart_port_shutdown(port);
} }
...@@ -1885,7 +1885,7 @@ static bool uart_carrier_raised(struct tty_port *port) ...@@ -1885,7 +1885,7 @@ static bool uart_carrier_raised(struct tty_port *port)
return mctrl & TIOCM_CAR; return mctrl & TIOCM_CAR;
} }
static void uart_dtr_rts(struct tty_port *port, int raise) static void uart_dtr_rts(struct tty_port *port, bool raise)
{ {
struct uart_state *state = container_of(port, struct uart_state, port); struct uart_state *state = container_of(port, struct uart_state, port);
struct uart_port *uport; struct uart_port *uport;
......
...@@ -3138,7 +3138,7 @@ static bool carrier_raised(struct tty_port *port) ...@@ -3138,7 +3138,7 @@ static bool carrier_raised(struct tty_port *port)
return info->signals & SerialSignal_DCD; return info->signals & SerialSignal_DCD;
} }
static void dtr_rts(struct tty_port *port, int on) static void dtr_rts(struct tty_port *port, bool on)
{ {
unsigned long flags; unsigned long flags;
struct slgt_info *info = container_of(port, struct slgt_info, port); struct slgt_info *info = container_of(port, struct slgt_info, port);
......
...@@ -463,7 +463,7 @@ EXPORT_SYMBOL(tty_port_carrier_raised); ...@@ -463,7 +463,7 @@ EXPORT_SYMBOL(tty_port_carrier_raised);
void tty_port_raise_dtr_rts(struct tty_port *port) void tty_port_raise_dtr_rts(struct tty_port *port)
{ {
if (port->ops->dtr_rts) if (port->ops->dtr_rts)
port->ops->dtr_rts(port, 1); port->ops->dtr_rts(port, true);
} }
EXPORT_SYMBOL(tty_port_raise_dtr_rts); EXPORT_SYMBOL(tty_port_raise_dtr_rts);
...@@ -478,7 +478,7 @@ EXPORT_SYMBOL(tty_port_raise_dtr_rts); ...@@ -478,7 +478,7 @@ EXPORT_SYMBOL(tty_port_raise_dtr_rts);
void tty_port_lower_dtr_rts(struct tty_port *port) void tty_port_lower_dtr_rts(struct tty_port *port)
{ {
if (port->ops->dtr_rts) if (port->ops->dtr_rts)
port->ops->dtr_rts(port, 0); port->ops->dtr_rts(port, false);
} }
EXPORT_SYMBOL(tty_port_lower_dtr_rts); EXPORT_SYMBOL(tty_port_lower_dtr_rts);
......
...@@ -651,7 +651,7 @@ static int acm_tty_open(struct tty_struct *tty, struct file *filp) ...@@ -651,7 +651,7 @@ static int acm_tty_open(struct tty_struct *tty, struct file *filp)
return tty_port_open(&acm->port, tty, filp); return tty_port_open(&acm->port, tty, filp);
} }
static void acm_port_dtr_rts(struct tty_port *port, int raise) static void acm_port_dtr_rts(struct tty_port *port, bool raise)
{ {
struct acm *acm = container_of(port, struct acm, port); struct acm *acm = container_of(port, struct acm, port);
int val; int val;
......
...@@ -765,7 +765,7 @@ static bool serial_port_carrier_raised(struct tty_port *port) ...@@ -765,7 +765,7 @@ static bool serial_port_carrier_raised(struct tty_port *port)
return true; return true;
} }
static void serial_port_dtr_rts(struct tty_port *port, int on) static void serial_port_dtr_rts(struct tty_port *port, bool on)
{ {
struct usb_serial_port *p = container_of(port, struct usb_serial_port, port); struct usb_serial_port *p = container_of(port, struct usb_serial_port, port);
struct usb_serial_driver *drv = p->serial->type; struct usb_serial_driver *drv = p->serial->type;
......
...@@ -16,7 +16,7 @@ struct tty_struct; ...@@ -16,7 +16,7 @@ struct tty_struct;
/** /**
* struct tty_port_operations -- operations on tty_port * struct tty_port_operations -- operations on tty_port
* @carrier_raised: return true if the carrier is raised on @port * @carrier_raised: return true if the carrier is raised on @port
* @dtr_rts: raise the DTR line if @raise is nonzero, otherwise lower DTR * @dtr_rts: raise the DTR line if @raise is true, otherwise lower DTR
* @shutdown: called when the last close completes or a hangup finishes IFF the * @shutdown: called when the last close completes or a hangup finishes IFF the
* port was initialized. Do not use to free resources. Turn off the device * port was initialized. Do not use to free resources. Turn off the device
* only. Called under the port mutex to serialize against @activate and * only. Called under the port mutex to serialize against @activate and
...@@ -32,7 +32,7 @@ struct tty_struct; ...@@ -32,7 +32,7 @@ struct tty_struct;
*/ */
struct tty_port_operations { struct tty_port_operations {
bool (*carrier_raised)(struct tty_port *port); bool (*carrier_raised)(struct tty_port *port);
void (*dtr_rts)(struct tty_port *port, int raise); void (*dtr_rts)(struct tty_port *port, bool raise);
void (*shutdown)(struct tty_port *port); void (*shutdown)(struct tty_port *port);
int (*activate)(struct tty_port *port, struct tty_struct *tty); int (*activate)(struct tty_port *port, struct tty_struct *tty);
void (*destruct)(struct tty_port *port); void (*destruct)(struct tty_port *port);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment