aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/tty/serial
diff options
context:
space:
mode:
authorJinchao Wang <wjc@cdjrlc.com>2021-06-24 10:12:07 +0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2021-06-24 14:51:45 +0200
commit5607fa6c3da3189de1bac356c73bc4fcaf4c0234 (patch)
treebbe8038f90d5c17e6dda329bacc2e5c2d81101f1 /drivers/tty/serial
parentserial: 8250: 8250_omap: Fix possible interrupt storm on K3 SoCs (diff)
downloadlinux-dev-5607fa6c3da3189de1bac356c73bc4fcaf4c0234.tar.xz
linux-dev-5607fa6c3da3189de1bac356c73bc4fcaf4c0234.zip
serial: Prefer unsigned int to bare use of unsigned
Fix checkpatch warnings: WARNING: Prefer 'unsigned int' to bare use of 'unsigned' Signed-off-by: Jinchao Wang <wjc@cdjrlc.com> Link: https://lore.kernel.org/r/20210624021207.58059-1-wjc@cdjrlc.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty/serial')
-rw-r--r--drivers/tty/serial/mvebu-uart.c2
-rw-r--r--drivers/tty/serial/xilinx_uartps.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/tty/serial/mvebu-uart.c b/drivers/tty/serial/mvebu-uart.c
index 51b0ecabf2ec..04c41689d81c 100644
--- a/drivers/tty/serial/mvebu-uart.c
+++ b/drivers/tty/serial/mvebu-uart.c
@@ -617,7 +617,7 @@ static void mvebu_uart_putc(struct uart_port *port, int c)
static void mvebu_uart_putc_early_write(struct console *con,
const char *s,
- unsigned n)
+ unsigned int n)
{
struct earlycon_device *dev = con->data;
diff --git a/drivers/tty/serial/xilinx_uartps.c b/drivers/tty/serial/xilinx_uartps.c
index bafdf75c1fa8..962e522ccc45 100644
--- a/drivers/tty/serial/xilinx_uartps.c
+++ b/drivers/tty/serial/xilinx_uartps.c
@@ -1149,7 +1149,7 @@ static void cdns_uart_console_putchar(struct uart_port *port, int ch)
}
static void cdns_early_write(struct console *con, const char *s,
- unsigned n)
+ unsigned int n)
{
struct earlycon_device *dev = con->data;