Re: [PATCH] serial: uart: add hw flow control support configuration

From: One Thousand Gnomes
Date: Wed Apr 23 2014 - 10:28:27 EST


> >- if (up->capabilities & UART_CAP_AFE && port->fifosize >= 32) {
> >+ if ((up->capabilities & UART_CAP_AFE && (port->fifosize >= 32)) ||
> >+ port->flags & UPF_HARD_FLOW) {
>
> [Alan] Surely you want brackets on the port->flags & UPF_HARD_FLOW ??
>
> The C precedence table shows following order:=
> -> & ||
>
> So flags will be accessed first and then AND-ed with UPF_HARD_FLOW and
> result will be OR-ed with left side expression value. So no need for bracket IMO.

Yep... agreed.

Alan
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/