diff options
author | Ilpo Järvinen <ilpo.jarvinen@helsinki.fi> | 2009-01-09 15:22:52 -0500 |
---|---|---|
committer | Karsten Keil <kkeil@suse.de> | 2009-01-11 12:18:18 -0500 |
commit | 21c150a6d2c39fe6975e91437095a2c31efdb550 (patch) | |
tree | 51a69a94bfffccc8943ba19138cf60ecfa6572e9 /drivers/isdn/mISDN | |
parent | 1916ebb2ddad78ae6405b1291acb9f9de212ec49 (diff) |
misdn: indentation and braces disagree - add braces
This is not buggy due to plain luck as there is only one entry currently
in the element_attributes.
Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@helsinki.fi>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Karsten Keil <kkeil@suse.de>
Diffstat (limited to 'drivers/isdn/mISDN')
-rw-r--r-- | drivers/isdn/mISDN/dsp_pipeline.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/isdn/mISDN/dsp_pipeline.c b/drivers/isdn/mISDN/dsp_pipeline.c index 0c773fa9dbd0..18cf87c113e7 100644 --- a/drivers/isdn/mISDN/dsp_pipeline.c +++ b/drivers/isdn/mISDN/dsp_pipeline.c | |||
@@ -110,7 +110,7 @@ int mISDN_dsp_element_register(struct mISDN_dsp_element *elem) | |||
110 | } | 110 | } |
111 | list_add_tail(&entry->list, &dsp_elements); | 111 | list_add_tail(&entry->list, &dsp_elements); |
112 | 112 | ||
113 | for (i = 0; i < ARRAY_SIZE(element_attributes); ++i) | 113 | for (i = 0; i < ARRAY_SIZE(element_attributes); ++i) { |
114 | ret = device_create_file(&entry->dev, | 114 | ret = device_create_file(&entry->dev, |
115 | &element_attributes[i]); | 115 | &element_attributes[i]); |
116 | if (ret) { | 116 | if (ret) { |
@@ -118,6 +118,7 @@ int mISDN_dsp_element_register(struct mISDN_dsp_element *elem) | |||
118 | __func__); | 118 | __func__); |
119 | goto err2; | 119 | goto err2; |
120 | } | 120 | } |
121 | } | ||
121 | 122 | ||
122 | #ifdef PIPELINE_DEBUG | 123 | #ifdef PIPELINE_DEBUG |
123 | printk(KERN_DEBUG "%s: %s registered\n", __func__, elem->name); | 124 | printk(KERN_DEBUG "%s: %s registered\n", __func__, elem->name); |