Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging: speakup: Removed Unnecessary parentheses.

Unnecessary parentheses are removed to improve readability.

Signed-off-by: Arushi Singhal <arushisinghal19971997@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Arushi Singhal and committed by
Greg Kroah-Hartman
3b4ad1ec 205931ea

+1 -1
+1 -1
drivers/staging/speakup/kobjects.c
··· 392 392 len--; 393 393 new_synth_name[len] = '\0'; 394 394 spk_strlwr(new_synth_name); 395 - if (synth && (!strcmp(new_synth_name, synth->name))) { 395 + if (synth && !strcmp(new_synth_name, synth->name)) { 396 396 pr_warn("%s already in use\n", new_synth_name); 397 397 } else if (synth_init(new_synth_name) != 0) { 398 398 pr_warn("failed to init synth %s\n", new_synth_name);