[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <2024041951-paradox-stable-320e@gregkh>
Date: Fri, 19 Apr 2024 08:58:14 +0200
From: Greg Kroah-Hartman <gregkh@...uxfoundation.org>
To: Parker Newman <parker@...est.io>
Cc: Jiri Slaby <jirislaby@...nel.org>, linux-kernel@...r.kernel.org,
linux-serial@...r.kernel.org,
Parker Newman <pnewman@...necttech.com>
Subject: Re: [PATCH v1 3/4] serial: exar: remove unneeded parenthesis
On Thu, Apr 18, 2024 at 11:36:30AM -0400, Parker Newman wrote:
> From: Parker Newman <pnewman@...necttech.com>
>
> Remove unneeded parenthesis from several locations.
>
> Based on feedback from:
> Link: https://lore.kernel.org/linux-serial/f2353b8c-2079-b895-2707-f6be83161288@linux.intel.com
>
> Signed-off-by: Parker Newman <pnewman@...necttech.com>
> ---
> drivers/tty/serial/8250/8250_exar.c | 28 ++++++++++++++--------------
> 1 file changed, 14 insertions(+), 14 deletions(-)
>
> diff --git a/drivers/tty/serial/8250/8250_exar.c b/drivers/tty/serial/8250/8250_exar.c
> index 01748ddbf729..10725ad0f3ef 100644
> --- a/drivers/tty/serial/8250/8250_exar.c
> +++ b/drivers/tty/serial/8250/8250_exar.c
> @@ -317,7 +317,7 @@ static inline u8 exar_ee_read_bit(struct exar8250 *priv)
>
> regb = exar_read_reg(priv, UART_EXAR_REGB);
>
> - return (regb & UART_EXAR_REGB_EEDO ? 1 : 0);
> + return regb & UART_EXAR_REGB_EEDO ? 1 : 0;
Again, spell out the ? : stuff here please. Using () isn't the problem :)
thanks,
greg k-h
Powered by blists - more mailing lists