Commit 3adc4aae authored by Katie Dunne's avatar Katie Dunne Committed by Greg Kroah-Hartman

staging: speakup: Remove unnecessary parentheses

Issue found by checkpatch.
Signed-off-by: default avatarKatie Dunne <kdunne@mail.ccsf.edu>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 8d904fe5
...@@ -407,7 +407,7 @@ static int do_synth_init(struct spk_synth *in_synth) ...@@ -407,7 +407,7 @@ static int do_synth_init(struct spk_synth *in_synth)
if (!spk_quiet_boot) if (!spk_quiet_boot)
synth_printf("%s found\n", synth->long_name); synth_printf("%s found\n", synth->long_name);
if (synth->attributes.name if (synth->attributes.name
&& sysfs_create_group(speakup_kobj, &(synth->attributes)) < 0) && sysfs_create_group(speakup_kobj, &synth->attributes) < 0)
return -ENOMEM; return -ENOMEM;
synth_flags = synth->flags; synth_flags = synth->flags;
wake_up_interruptible_all(&speakup_event); wake_up_interruptible_all(&speakup_event);
...@@ -429,7 +429,7 @@ void synth_release(void) ...@@ -429,7 +429,7 @@ void synth_release(void)
del_timer(&thread_timer); del_timer(&thread_timer);
spin_unlock_irqrestore(&speakup_info.spinlock, flags); spin_unlock_irqrestore(&speakup_info.spinlock, flags);
if (synth->attributes.name) if (synth->attributes.name)
sysfs_remove_group(speakup_kobj, &(synth->attributes)); sysfs_remove_group(speakup_kobj, &synth->attributes);
for (var = synth->vars; var->var_id != MAXVARS; var++) for (var = synth->vars; var->var_id != MAXVARS; var++)
speakup_unregister_var(var->var_id); speakup_unregister_var(var->var_id);
spk_stop_serial_interrupt(); spk_stop_serial_interrupt();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment