public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] gs: missing parentheses
@ 2009-05-14 10:11 Roel Kluin
  2009-05-14 10:25 ` Viral Mehta
  0 siblings, 1 reply; 2+ messages in thread
From: Roel Kluin @ 2009-05-14 10:11 UTC (permalink / raw)
  To: alan; +Cc: lkml, Andrew Morton

`|' has a higher precedence than `?' so add parentheses.

Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
---
diff --git a/drivers/char/sx.c b/drivers/char/sx.c
index 518f2a2..1f63add 100644
--- a/drivers/char/sx.c
+++ b/drivers/char/sx.c
@@ -979,8 +979,8 @@ static int sx_set_real_termios(void *ptr)
 			(I_IXANY(port->gs.port.tty) ? SP_TANY : 0) | SP_DCEN);
 
 	sx_write_channel_byte(port, hi_break,
-			(I_IGNBRK(port->gs.port.tty) ? BR_IGN : 0 |
-			I_BRKINT(port->gs.port.tty) ? BR_INT : 0));
+			(I_IGNBRK(port->gs.port.tty) ? BR_IGN : 0) |
+			(I_BRKINT(port->gs.port.tty) ? BR_INT : 0));
 
 	sx_write_channel_byte(port, hi_txon, START_CHAR(port->gs.port.tty));
 	sx_write_channel_byte(port, hi_rxon, START_CHAR(port->gs.port.tty));

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] gs: missing parentheses
  2009-05-14 10:11 [PATCH] gs: missing parentheses Roel Kluin
@ 2009-05-14 10:25 ` Viral Mehta
  0 siblings, 0 replies; 2+ messages in thread
From: Viral Mehta @ 2009-05-14 10:25 UTC (permalink / raw)
  To: Roel Kluin; +Cc: alan, lkml, Andrew Morton



Roel Kluin wrote:
> `|' has a higher precedence than `?' so add parentheses.
>
> Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
> ---
> diff --git a/drivers/char/sx.c b/drivers/char/sx.c
> index 518f2a2..1f63add 100644
> --- a/drivers/char/sx.c
> +++ b/drivers/char/sx.c
> @@ -979,8 +979,8 @@ static int sx_set_real_termios(void *ptr)
>  			(I_IXANY(port->gs.port.tty) ? SP_TANY : 0) | SP_DCEN);
>  
>  	sx_write_channel_byte(port, hi_break,
> -			(I_IGNBRK(port->gs.port.tty) ? BR_IGN : 0 |
> -			I_BRKINT(port->gs.port.tty) ? BR_INT : 0));
>   
This looks correct to me.
> +			(I_IGNBRK(port->gs.port.tty) ? BR_IGN : 0) |
> +			(I_BRKINT(port->gs.port.tty) ? BR_INT : 0));
>   
It may not want Interrupt and Ignore both at the same time on received 
breaks.

>  
>  	sx_write_channel_byte(port, hi_txon, START_CHAR(port->gs.port.tty));
>  	sx_write_channel_byte(port, hi_rxon, START_CHAR(port->gs.port.tty));
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/
>
>
> Email Scanned for Virus & Dangerous Content by : www.CleanMailGateway.com
>
>
>   

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2009-05-14 10:29 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-05-14 10:11 [PATCH] gs: missing parentheses Roel Kluin
2009-05-14 10:25 ` Viral Mehta

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox