Made suggested modifications from checkpatch in reference
to: CHECK: Alignment should match open parenthesis

Signed-off-by: Walt Feasel <waltfea...@gmail.com>
---
 drivers/staging/speakup/kobjects.c | 23 ++++++++++++-----------
 1 file changed, 12 insertions(+), 11 deletions(-)

diff --git a/drivers/staging/speakup/kobjects.c 
b/drivers/staging/speakup/kobjects.c
index 5d713eb..1b7ce1b 100644
--- a/drivers/staging/speakup/kobjects.c
+++ b/drivers/staging/speakup/kobjects.c
@@ -380,7 +380,7 @@ static ssize_t synth_show(struct kobject *kobj, struct 
kobj_attribute *attr,
  * This is called when a user requests to change synthesizers.
  */
 static ssize_t synth_store(struct kobject *kobj, struct kobj_attribute *attr,
-       const char *buf, size_t count)
+                          const char *buf, size_t count)
 {
        int len;
        char new_synth_name[10];
@@ -406,7 +406,8 @@ static ssize_t synth_store(struct kobject *kobj, struct 
kobj_attribute *attr,
  * This is called when text is sent to the synth via the synth_direct file.
  */
 static ssize_t synth_direct_store(struct kobject *kobj,
-       struct kobj_attribute *attr, const char *buf, size_t count)
+                                 struct kobj_attribute *attr, const char *buf,
+                                 size_t count)
 {
        u_char tmp[256];
        int len;
@@ -436,7 +437,7 @@ static ssize_t synth_direct_store(struct kobject *kobj,
  * This function is called when a user reads the version.
  */
 static ssize_t version_show(struct kobject *kobj, struct kobj_attribute *attr,
-       char *buf)
+                           char *buf)
 {
        char *cp;
 
@@ -452,7 +453,7 @@ static ssize_t version_show(struct kobject *kobj, struct 
kobj_attribute *attr,
  * This is called when a user reads the punctuation settings.
  */
 static ssize_t punc_show(struct kobject *kobj, struct kobj_attribute *attr,
-       char *buf)
+                        char *buf)
 {
        int i;
        char *cp = buf;
@@ -472,12 +473,12 @@ static ssize_t punc_show(struct kobject *kobj, struct 
kobj_attribute *attr,
        var = spk_get_punc_var(p_header->var_id);
        if (!var) {
                pr_warn("var is null, p_header->var_id is %i\n",
-                               p_header->var_id);
+                       p_header->var_id);
                return -EINVAL;
        }
 
        spin_lock_irqsave(&speakup_info.spinlock, flags);
-       pb = (struct st_bits_data *) &spk_punc_info[var->value];
+       pb = (struct st_bits_data *)&spk_punc_info[var->value];
        mask = pb->mask;
        for (i = 33; i < 128; i++) {
                if (!(spk_chartab[i]&mask))
@@ -492,7 +493,7 @@ static ssize_t punc_show(struct kobject *kobj, struct 
kobj_attribute *attr,
  * This is called when a user changes the punctuation settings.
  */
 static ssize_t punc_store(struct kobject *kobj, struct kobj_attribute *attr,
-                        const char *buf, size_t count)
+                         const char *buf, size_t count)
 {
        int x;
        struct st_var_header *p_header;
@@ -514,7 +515,7 @@ static ssize_t punc_store(struct kobject *kobj, struct 
kobj_attribute *attr,
        var = spk_get_punc_var(p_header->var_id);
        if (!var) {
                pr_warn("var is null, p_header->var_id is %i\n",
-                               p_header->var_id);
+                       p_header->var_id);
                return -EINVAL;
        }
 
@@ -539,7 +540,7 @@ static ssize_t punc_store(struct kobject *kobj, struct 
kobj_attribute *attr,
  * This function is called when a user reads one of the variable parameters.
  */
 ssize_t spk_var_show(struct kobject *kobj, struct kobj_attribute *attr,
-       char *buf)
+                    char *buf)
 {
        int rv = 0;
        struct st_var_header *param;
@@ -583,7 +584,7 @@ ssize_t spk_var_show(struct kobject *kobj, struct 
kobj_attribute *attr,
                break;
        default:
                rv = sprintf(buf, "Bad parameter  %s, type %i\n",
-                       param->name, param->var_type);
+                            param->name, param->var_type);
                break;
        }
        spin_unlock_irqrestore(&speakup_info.spinlock, flags);
@@ -595,7 +596,7 @@ EXPORT_SYMBOL_GPL(spk_var_show);
  * Used to reset either default_pitch or default_vol.
  */
 static inline void spk_reset_default_value(char *header_name,
-                                       int *synth_default_value, int idx)
+                                          int *synth_default_value, int idx)
 {
        struct st_var_header *param;
 
-- 
2.1.4

_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to