[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <200901092022.n09KMocF019893@imap1.linux-foundation.org>
Date: Fri, 09 Jan 2009 12:22:50 -0800
From: akpm@...ux-foundation.org
To: kkeil@...e.de
Cc: netdev@...r.kernel.org, akpm@...ux-foundation.org,
ilpo.jarvinen@...sinki.fi
Subject: [patch 1/4] misdn: indentation & braces disagree - add braces
From: Ilpo Järvinen <ilpo.jarvinen@...sinki.fi>
Nothing is broken because of this - currently.
Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@...sinki.fi>
Cc: Karsten Keil <kkeil@...e.de>
Signed-off-by: Andrew Morton <akpm@...ux-foundation.org>
---
drivers/isdn/mISDN/dsp_cmx.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff -puN drivers/isdn/mISDN/dsp_cmx.c~misdn-indentation-braces-disagree-add-braces drivers/isdn/mISDN/dsp_cmx.c
--- a/drivers/isdn/mISDN/dsp_cmx.c~misdn-indentation-braces-disagree-add-braces
+++ a/drivers/isdn/mISDN/dsp_cmx.c
@@ -1857,7 +1857,7 @@ dsp_cmx_hdlc(struct dsp *dsp, struct sk_
/* in case of hardware (echo) */
if (dsp->pcm_slot_tx >= 0)
return;
- if (dsp->echo)
+ if (dsp->echo) {
nskb = skb_clone(skb, GFP_ATOMIC);
if (nskb) {
hh = mISDN_HEAD_P(nskb);
@@ -1866,6 +1866,7 @@ dsp_cmx_hdlc(struct dsp *dsp, struct sk_
skb_queue_tail(&dsp->sendq, nskb);
schedule_work(&dsp->workq);
}
+ }
return;
}
/* in case of hardware conference */
_
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists