From: Andy Shevchenko Date: Fri, 3 May 2024 17:16:04 +0000 (+0300) Subject: serial: 8250_exar: Make type of bit the same in exar_ee_*_bit() X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=fa52ed247cfe3cbf008d70bc5831f5faf446e088;p=linux.git serial: 8250_exar: Make type of bit the same in exar_ee_*_bit() Make type of bit parameter and returned one the same in exar_ee_*_bit(). Signed-off-by: Andy Shevchenko Tested-by: Parker Newman Link: https://lore.kernel.org/r/20240503171917.2921250-13-andriy.shevchenko@linux.intel.com Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/tty/serial/8250/8250_exar.c b/drivers/tty/serial/8250/8250_exar.c index 93d2c8dd3cd8c..85085b73706c8 100644 --- a/drivers/tty/serial/8250/8250_exar.c +++ b/drivers/tty/serial/8250/8250_exar.c @@ -280,7 +280,7 @@ static inline void exar_ee_deselect(struct exar8250 *priv) exar_write_reg(priv, UART_EXAR_REGB, 0x00); } -static inline void exar_ee_write_bit(struct exar8250 *priv, int bit) +static inline void exar_ee_write_bit(struct exar8250 *priv, u8 bit) { u8 value = UART_EXAR_REGB_EECS;