From: sayli karnik Date: Thu, 23 Feb 2017 12:07:31 +0000 (+0530) Subject: staging: speakup: i18n: Add spaces around operators X-Git-Tag: v4.12-rc1~84^2~908 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=58b0de1cc0f5b4fd2a930244fe9fff862079d7af;p=karo-tx-linux.git staging: speakup: i18n: Add spaces around operators The patch adds spaces around binary operators as suggested by checkpatch.pl Signed-off-by: sayli karnik Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/speakup/kobjects.c b/drivers/staging/speakup/kobjects.c index ca075fe26d3f..4ea441d67c32 100644 --- a/drivers/staging/speakup/kobjects.c +++ b/drivers/staging/speakup/kobjects.c @@ -343,7 +343,7 @@ static ssize_t silent_store(struct kobject *kobj, struct kobj_attribute *attr, return -EINVAL; } spin_lock_irqsave(&speakup_info.spinlock, flags); - if (ch&2) { + if (ch & 2) { shut = 1; spk_do_flush(); } else { @@ -478,7 +478,7 @@ static ssize_t punc_show(struct kobject *kobj, struct kobj_attribute *attr, pb = (struct st_bits_data *) &spk_punc_info[var->value]; mask = pb->mask; for (i = 33; i < 128; i++) { - if (!(spk_chartab[i]&mask)) + if (!(spk_chartab[i] & mask)) continue; *cp++ = (char)i; }