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

staging: greybus: audio_codec.c: Logical continuations should be on the previous line

Fix the following error found by checkpatch.pl:
CHECK: Logical continuations should be on the previous line

Signed-off-by: Kamal Heib <kamalheib1@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Kamal Heib and committed by
Greg Kroah-Hartman
6a4dd600 0c3ba27b

+2 -2
+2 -2
drivers/staging/greybus/audio_codec.c
··· 841 841 * from codec->jack_list 842 842 */ 843 843 list_for_each_entry(jack, &codec->jack_list, list) { 844 - if ((jack == &module->headset_jack) 845 - || (jack == &module->button_jack)) 844 + if ((jack == &module->headset_jack) || 845 + (jack == &module->button_jack)) 846 846 snd_device_register(codec->card->snd_card, 847 847 jack->jack); 848 848 }