diff options
author | Ilpo Järvinen <ilpo.jarvinen@helsinki.fi> | 2009-01-09 23:22:50 +0300 |
---|---|---|
committer | Karsten Keil <kkeil@suse.de> | 2009-01-11 20:01:16 +0300 |
commit | f27b8c356c4fab9ad222b45bc1cd1c750e64d97b (patch) | |
tree | e4ec9c625a6d5484970c64103763defb55dc439b /drivers/isdn | |
parent | 9785a8f8db3df0605fa680f44185957aff9d8776 (diff) | |
download | linux-f27b8c356c4fab9ad222b45bc1cd1c750e64d97b.tar.xz |
indentation & braces disagree - add braces
Nothing is broken because of this - currently.
Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@helsinki.fi>
Signed-off-by: Karsten Keil <kkeil@suse.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'drivers/isdn')
-rw-r--r-- | drivers/isdn/mISDN/dsp_cmx.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/isdn/mISDN/dsp_cmx.c b/drivers/isdn/mISDN/dsp_cmx.c index 0ac67bff303a..b70c66b9d101 100644 --- a/drivers/isdn/mISDN/dsp_cmx.c +++ b/drivers/isdn/mISDN/dsp_cmx.c @@ -1893,7 +1893,7 @@ dsp_cmx_hdlc(struct dsp *dsp, struct sk_buff *skb) /* 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); @@ -1902,6 +1902,7 @@ dsp_cmx_hdlc(struct dsp *dsp, struct sk_buff *skb) skb_queue_tail(&dsp->sendq, nskb); schedule_work(&dsp->workq); } + } return; } /* in case of hardware conference */ |