From: Ilpo Järvinen Date: Tue, 13 May 2008 11:16:53 +0000 (+0300) Subject: hamradio/scc: add missing block braces to multi-statement if X-Git-Tag: v2.6.26-rc4~7^2~1^2~26 X-Git-Url: http://www.pilppa.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=6941727a08d49c88a58bc3afb55044df7932549e;p=linux-2.6-omap-h63xx.git hamradio/scc: add missing block braces to multi-statement if Signed-off-by: Ilpo Järvinen Signed-off-by: Jeff Garzik --- diff --git a/drivers/net/hamradio/scc.c b/drivers/net/hamradio/scc.c index f9051593583..45ae9d1191d 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) {