* [patch 1/4] misdn: indentation & braces disagree - add braces
@ 2009-01-09 20:22 akpm
2009-01-10 7:10 ` David Miller
0 siblings, 1 reply; 2+ messages in thread
From: akpm @ 2009-01-09 20:22 UTC (permalink / raw)
To: kkeil; +Cc: netdev, akpm, ilpo.jarvinen
From: Ilpo Järvinen <ilpo.jarvinen@helsinki.fi>
Nothing is broken because of this - currently.
Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@helsinki.fi>
Cc: Karsten Keil <kkeil@suse.de>
Signed-off-by: Andrew Morton <akpm@linux-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 */
_
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-01-10 7:10 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-09 20:22 [patch 1/4] misdn: indentation & braces disagree - add braces akpm
2009-01-10 7:10 ` David Miller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).