All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] hamradio/scc: add missing block braces to multi-statement if
@ 2008-05-13 11:16 Ilpo Järvinen
  2008-05-13 11:16 ` [PATCH 2/2] s2io: add missing block braces to multistatement if statement Ilpo Järvinen
  0 siblings, 1 reply; 4+ messages in thread
From: Ilpo Järvinen @ 2008-05-13 11:16 UTC (permalink / raw)
  To: Jeff Garzik; +Cc: netdev, Ilpo J�rvinen

Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@helsinki.fi>
---
 drivers/net/hamradio/scc.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/drivers/net/hamradio/scc.c b/drivers/net/hamradio/scc.c
index f905159..45ae9d1 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)
 				{
-- 
1.5.2.2


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

end of thread, other threads:[~2008-05-22 10:04 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-05-13 11:16 [PATCH 1/2] hamradio/scc: add missing block braces to multi-statement if Ilpo Järvinen
2008-05-13 11:16 ` [PATCH 2/2] s2io: add missing block braces to multistatement if statement Ilpo Järvinen
2008-05-13 16:22   ` Ramkrishna Vepa
2008-05-22 10:04   ` Jeff Garzik

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.