tty: n_tty: make flow of n_tty_receive_buf_common() a bool
[platform/kernel/linux-starfive.git] / drivers / tty / n_tty.c
index f44f38b..8b2bacb 100644 (file)
@@ -1665,7 +1665,7 @@ static void __receive_buf(struct tty_struct *tty, const u8 *cp, const u8 *fp,
  */
 static size_t
 n_tty_receive_buf_common(struct tty_struct *tty, const u8 *cp, const u8 *fp,
-                        int count, int flow)
+                        int count, bool flow)
 {
        struct n_tty_data *ldata = tty->disc_data;
        size_t rcvd = 0;
@@ -1748,13 +1748,13 @@ n_tty_receive_buf_common(struct tty_struct *tty, const u8 *cp, const u8 *fp,
 static void n_tty_receive_buf(struct tty_struct *tty, const u8 *cp,
                              const u8 *fp, size_t count)
 {
-       n_tty_receive_buf_common(tty, cp, fp, count, 0);
+       n_tty_receive_buf_common(tty, cp, fp, count, false);
 }
 
 static size_t n_tty_receive_buf2(struct tty_struct *tty, const u8 *cp,
                                 const u8 *fp, size_t count)
 {
-       return n_tty_receive_buf_common(tty, cp, fp, count, 1);
+       return n_tty_receive_buf_common(tty, cp, fp, count, true);
 }
 
 /**