summary refs log tree commit diff
path: root/drivers/net/hamradio/scc.c
diff options
context:
space:
mode:
authorIlpo Järvinen <ilpo.jarvinen@helsinki.fi>2008-05-13 14:16:53 +0300
committerJeff Garzik <jgarzik@redhat.com>2008-05-22 06:03:31 -0400
commit6941727a08d49c88a58bc3afb55044df7932549e (patch)
tree895f75e5f3319cf36faaf451504ba3541c77a383 /drivers/net/hamradio/scc.c
parent7fb1c2ac8ecaf0883f2fcb38dfc9ec2d15cee11d (diff)
downloadlinux-6941727a08d49c88a58bc3afb55044df7932549e.tar.gz
hamradio/scc: add missing block braces to multi-statement if
Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@helsinki.fi>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
Diffstat (limited to 'drivers/net/hamradio/scc.c')
-rw-r--r--drivers/net/hamradio/scc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/hamradio/scc.c b/drivers/net/hamradio/scc.c
index f90515935833..45ae9d1191d7 100644
--- a/drivers/net/hamradio/scc.c
+++ b/drivers/net/hamradio/scc.c
@@ -1340,9 +1340,10 @@ static unsigned int scc_set_param(struct scc_channel *scc, unsigned int cmd, uns
 		case PARAM_RTS:	
 			if ( !(scc->wreg[R5] & RTS) )
 			{
-				if (arg != TX_OFF)
+				if (arg != TX_OFF) {
 					scc_key_trx(scc, TX_ON);
 					scc_start_tx_timer(scc, t_txdelay, scc->kiss.txdelay);
+				}
 			} else {
 				if (arg == TX_OFF)
 				{