projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ff4a8f3
)
ALSA: hda - if statement not indented
author
Dan Carpenter
<dan.carpenter@oracle.com>
Wed, 14 May 2014 14:18:31 +0000
(17:18 +0300)
committer
Takashi Iwai
<tiwai@suse.de>
Wed, 14 May 2014 14:47:27 +0000
(16:47 +0200)
The "break;" should be indented.
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/pci/hda/hda_generic.c
patch
|
blob
|
history
diff --git
a/sound/pci/hda/hda_generic.c
b/sound/pci/hda/hda_generic.c
index
1613388
..
589e47c
100644
(file)
--- a/
sound/pci/hda/hda_generic.c
+++ b/
sound/pci/hda/hda_generic.c
@@
-3722,7
+3722,7
@@
static void parse_digital(struct hda_codec *codec)
} else {
spec->multiout.slave_dig_outs = spec->slave_dig_outs;
if (nums >= ARRAY_SIZE(spec->slave_dig_outs) - 1)
- break;
+
break;
spec->slave_dig_outs[nums - 1] = dig_nid;
}
nums++;