tty: Convert ->carrier_raised() and callchains to bool
authorIlpo Järvinen <ilpo.jarvinen@linux.intel.com>
Tue, 17 Jan 2023 09:03:52 +0000 (11:03 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 19 Jan 2023 15:04:35 +0000 (16:04 +0100)
Return boolean from ->carrier_raised() instead of 0 and 1. Make the
return type change also to tty_port_carrier_raised() that makes the
->carrier_raised() call (+ cd variable in moxa into which its return
value is stored).

Also cleans up a few unnecessary constructs related to this change:

return xx ? 1 : 0;
-> return xx;

if (xx)
return 1;
return 0;
-> return xx;

Reviewed-by: Jiri Slaby <jirislaby@kernel.org>
Acked-by: Ulf Hansson <ulf.hansson@linaro.org> # For MMC
Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
Link: https://lore.kernel.org/r/20230117090358.4796-7-ilpo.jarvinen@linux.intel.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
12 files changed:
drivers/char/pcmcia/synclink_cs.c
drivers/mmc/core/sdio_uart.c
drivers/tty/amiserial.c
drivers/tty/moxa.c
drivers/tty/mxser.c
drivers/tty/n_gsm.c
drivers/tty/serial/serial_core.c
drivers/tty/synclink_gt.c
drivers/tty/tty_port.c
drivers/usb/serial/usb-serial.c
include/linux/tty_port.h
net/bluetooth/rfcomm/tty.c

index baa46e8a094bc016a65e8e3d20d4ea6bd6c535b0..4391138e1b8a08166ce670679e306da82cbe1863 100644 (file)
@@ -377,7 +377,7 @@ static void async_mode(MGSLPC_INFO *info);
 
 static void tx_timeout(struct timer_list *t);
 
-static int carrier_raised(struct tty_port *port);
+static bool carrier_raised(struct tty_port *port);
 static void dtr_rts(struct tty_port *port, int onoff);
 
 #if SYNCLINK_GENERIC_HDLC
@@ -2430,7 +2430,7 @@ static void mgslpc_hangup(struct tty_struct *tty)
        tty_port_hangup(&info->port);
 }
 
-static int carrier_raised(struct tty_port *port)
+static bool carrier_raised(struct tty_port *port)
 {
        MGSLPC_INFO *info = container_of(port, MGSLPC_INFO, port);
        unsigned long flags;
@@ -2439,9 +2439,7 @@ static int carrier_raised(struct tty_port *port)
        get_signals(info);
        spin_unlock_irqrestore(&info->lock, flags);
 
-       if (info->serial_signals & SerialSignal_DCD)
-               return 1;
-       return 0;
+       return info->serial_signals & SerialSignal_DCD;
 }
 
 static void dtr_rts(struct tty_port *port, int onoff)
index ae7ef2e038be127bf0f82a9ca8aa85c120b6fa95..47f58258d8ffb123407cbfb4b7468329f9d01184 100644 (file)
@@ -526,7 +526,7 @@ static void sdio_uart_irq(struct sdio_func *func)
        port->in_sdio_uart_irq = NULL;
 }
 
-static int uart_carrier_raised(struct tty_port *tport)
+static bool uart_carrier_raised(struct tty_port *tport)
 {
        struct sdio_uart_port *port =
                        container_of(tport, struct sdio_uart_port, port);
@@ -535,9 +535,8 @@ static int uart_carrier_raised(struct tty_port *tport)
                return 1;
        ret = sdio_uart_get_mctrl(port);
        sdio_uart_release_func(port);
-       if (ret & TIOCM_CAR)
-               return 1;
-       return 0;
+
+       return ret & TIOCM_CAR;
 }
 
 /**
index 460d33a1e70be90a62136fccbf3817c63e209d68..01c4fd3ce7c88be2c280579a778734763698cd3a 100644 (file)
@@ -1454,7 +1454,7 @@ static const struct tty_operations serial_ops = {
        .proc_show = rs_proc_show,
 };
 
-static int amiga_carrier_raised(struct tty_port *port)
+static bool amiga_carrier_raised(struct tty_port *port)
 {
        return !(ciab.pra & SER_DCD);
 }
index 2d9635e14deddd187869e5ce029dc602875fda0e..6a1e78e33a2ccfc94ef3f0055195cfacb784d849 100644 (file)
@@ -501,7 +501,7 @@ static int moxa_tiocmset(struct tty_struct *tty,
 static void moxa_poll(struct timer_list *);
 static void moxa_set_tty_param(struct tty_struct *, const struct ktermios *);
 static void moxa_shutdown(struct tty_port *);
-static int moxa_carrier_raised(struct tty_port *);
+static bool moxa_carrier_raised(struct tty_port *);
 static void moxa_dtr_rts(struct tty_port *, int);
 /*
  * moxa board interface functions:
@@ -1432,7 +1432,7 @@ static void moxa_shutdown(struct tty_port *port)
        MoxaPortFlushData(ch, 2);
 }
 
-static int moxa_carrier_raised(struct tty_port *port)
+static bool moxa_carrier_raised(struct tty_port *port)
 {
        struct moxa_port *ch = container_of(port, struct moxa_port, port);
        int dcd;
index 2926a831727d3ace983d63120e1a112a77191f96..96c72e691cd779344150f1cfa17d266de69e9ce5 100644 (file)
@@ -458,10 +458,11 @@ static void __mxser_stop_tx(struct mxser_port *info)
        outb(info->IER, info->ioaddr + UART_IER);
 }
 
-static int mxser_carrier_raised(struct tty_port *port)
+static bool mxser_carrier_raised(struct tty_port *port)
 {
        struct mxser_port *mp = container_of(port, struct mxser_port, port);
-       return (inb(mp->ioaddr + UART_MSR) & UART_MSR_DCD)?1:0;
+
+       return inb(mp->ioaddr + UART_MSR) & UART_MSR_DCD;
 }
 
 static void mxser_dtr_rts(struct tty_port *port, int on)
index ced0e6dc179dae2d6d3c48ca081e163e2305a688..64abc5fbf2c1d9d9814df31a847b86c28aa34d62 100644 (file)
@@ -3770,16 +3770,16 @@ static int gsm_modem_update(struct gsm_dlci *dlci, u8 brk)
        return -EPROTONOSUPPORT;
 }
 
-static int gsm_carrier_raised(struct tty_port *port)
+static bool gsm_carrier_raised(struct tty_port *port)
 {
        struct gsm_dlci *dlci = container_of(port, struct gsm_dlci, port);
        struct gsm_mux *gsm = dlci->gsm;
 
        /* Not yet open so no carrier info */
        if (dlci->state != DLCI_OPEN)
-               return 0;
+               return false;
        if (debug & DBG_CD_ON)
-               return 1;
+               return true;
 
        /*
         * Basic mode with control channel in ADM mode may not respond
@@ -3787,7 +3787,7 @@ static int gsm_carrier_raised(struct tty_port *port)
         */
        if (gsm->encoding == GSM_BASIC_OPT &&
            gsm->dlci[0]->mode == DLCI_MODE_ADM && !dlci->modem_rx)
-               return 1;
+               return true;
 
        return dlci->modem_rx & TIOCM_CD;
 }
index 84a53f6761be65717af9ec69580d74f27034cb7e..ddf14c4f4bf5a9951ae7c5c35f7114f5ef1c99bc 100644 (file)
@@ -1861,7 +1861,7 @@ static void uart_port_shutdown(struct tty_port *port)
        }
 }
 
-static int uart_carrier_raised(struct tty_port *port)
+static bool uart_carrier_raised(struct tty_port *port)
 {
        struct uart_state *state = container_of(port, struct uart_state, port);
        struct uart_port *uport;
@@ -1875,15 +1875,14 @@ static int uart_carrier_raised(struct tty_port *port)
         * continue and not sleep
         */
        if (WARN_ON(!uport))
-               return 1;
+               return true;
        spin_lock_irq(&uport->lock);
        uart_enable_ms(uport);
        mctrl = uport->ops->get_mctrl(uport);
        spin_unlock_irq(&uport->lock);
        uart_port_deref(uport);
-       if (mctrl & TIOCM_CAR)
-               return 1;
-       return 0;
+
+       return mctrl & TIOCM_CAR;
 }
 
 static void uart_dtr_rts(struct tty_port *port, int raise)
index 81c94906f06ec3ac4fb7af595955472c304d0c1e..4ba71ec764f7efeefd66f0b30b2784684c9f7bde 100644 (file)
@@ -3126,7 +3126,7 @@ static int tiocmset(struct tty_struct *tty,
        return 0;
 }
 
-static int carrier_raised(struct tty_port *port)
+static bool carrier_raised(struct tty_port *port)
 {
        unsigned long flags;
        struct slgt_info *info = container_of(port, struct slgt_info, port);
@@ -3134,7 +3134,8 @@ static int carrier_raised(struct tty_port *port)
        spin_lock_irqsave(&info->lock,flags);
        get_gtsignals(info);
        spin_unlock_irqrestore(&info->lock,flags);
-       return (info->signals & SerialSignal_DCD) ? 1 : 0;
+
+       return info->signals & SerialSignal_DCD;
 }
 
 static void dtr_rts(struct tty_port *port, int on)
@@ -3162,7 +3163,7 @@ static int block_til_ready(struct tty_struct *tty, struct file *filp,
        int             retval;
        bool            do_clocal = false;
        unsigned long   flags;
-       int             cd;
+       bool            cd;
        struct tty_port *port = &info->port;
 
        DBGINFO(("%s block_til_ready\n", tty->driver->name));
index 469de3c010b8b69e071f9de1a12fc5496ddb7622..a573c500f95b8b9b402218cec1d68c4906141212 100644 (file)
@@ -444,10 +444,10 @@ EXPORT_SYMBOL_GPL(tty_port_tty_wakeup);
  * to hide some internal details. This will eventually become entirely
  * internal to the tty port.
  */
-int tty_port_carrier_raised(struct tty_port *port)
+bool tty_port_carrier_raised(struct tty_port *port)
 {
        if (port->ops->carrier_raised == NULL)
-               return 1;
+               return true;
        return port->ops->carrier_raised(port);
 }
 EXPORT_SYMBOL(tty_port_carrier_raised);
index 164521ee10c6b49f48aecf2400eb757405dec34f..019720a63fac62b3a10bf493b7383a3d25ea90e5 100644 (file)
@@ -754,7 +754,7 @@ static struct usb_serial_driver *search_serial_device(
        return NULL;
 }
 
-static int serial_port_carrier_raised(struct tty_port *port)
+static bool serial_port_carrier_raised(struct tty_port *port)
 {
        struct usb_serial_port *p = container_of(port, struct usb_serial_port, port);
        struct usb_serial_driver *drv = p->serial->type;
@@ -762,7 +762,7 @@ static int serial_port_carrier_raised(struct tty_port *port)
        if (drv->carrier_raised)
                return drv->carrier_raised(p);
        /* No carrier control - don't block */
-       return 1;
+       return true;
 }
 
 static void serial_port_dtr_rts(struct tty_port *port, int on)
index fa3c3bdaa2347abe0020e0e9c6a79cb4729c4e2f..cf098459cb01b88deeca19ca8a34975a41ccb67a 100644 (file)
@@ -15,7 +15,7 @@ struct tty_struct;
 
 /**
  * struct tty_port_operations -- operations on tty_port
- * @carrier_raised: return 1 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
  * @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
@@ -31,7 +31,7 @@ struct tty_struct;
  *     the port itself.
  */
 struct tty_port_operations {
-       int (*carrier_raised)(struct tty_port *port);
+       bool (*carrier_raised)(struct tty_port *port);
        void (*dtr_rts)(struct tty_port *port, int raise);
        void (*shutdown)(struct tty_port *port);
        int (*activate)(struct tty_port *port, struct tty_struct *tty);
@@ -230,7 +230,7 @@ static inline void tty_port_set_kopened(struct tty_port *port, bool val)
 
 struct tty_struct *tty_port_tty_get(struct tty_port *port);
 void tty_port_tty_set(struct tty_port *port, struct tty_struct *tty);
-int tty_port_carrier_raised(struct tty_port *port);
+bool tty_port_carrier_raised(struct tty_port *port);
 void tty_port_raise_dtr_rts(struct tty_port *port);
 void tty_port_lower_dtr_rts(struct tty_port *port);
 void tty_port_hangup(struct tty_port *port);
index 8009e0e932162d77d58343332ba0ac671411df15..5697df9d439442dd5521ba67f5c69c5672578d6b 100644 (file)
@@ -119,7 +119,7 @@ static int rfcomm_dev_activate(struct tty_port *port, struct tty_struct *tty)
 }
 
 /* we block the open until the dlc->state becomes BT_CONNECTED */
-static int rfcomm_dev_carrier_raised(struct tty_port *port)
+static bool rfcomm_dev_carrier_raised(struct tty_port *port)
 {
        struct rfcomm_dev *dev = container_of(port, struct rfcomm_dev, port);