aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorStephen Rothwell <sfr@canb.auug.org.au>2009-10-12 00:56:17 -0400
committerTakashi Iwai <tiwai@suse.de>2009-10-12 01:31:12 -0400
commit0f48327eac5f65ad029d7112cac97577766730ba (patch)
tree69acd637bc55ca9caa686bb5716658d529910957 /sound
parent377ff31ae06f0d2644839246cd18c3e17fe62a48 (diff)
sound: use semicolons to end statements
Fixes: sound/pci/hda/patch_via.c: In function 'patch_vt1718S': sound/pci/hda/patch_via.c:4951: error: expected expression before 'return' sound/pci/hda/patch_via.c: In function 'patch_vt1716S': sound/pci/hda/patch_via.c:5441: error: expected expression before 'return' sound/pci/hda/patch_via.c: In function 'patch_vt2002P': sound/pci/hda/patch_via.c:5794: error: expected expression before 'return' sound/pci/hda/patch_via.c: In function 'patch_vt1812': sound/pci/hda/patch_via.c:6148: error: expected expression before 'return' Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound')
-rw-r--r--sound/pci/hda/patch_via.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sound/pci/hda/patch_via.c b/sound/pci/hda/patch_via.c
index 30260e259181..a294060ed684 100644
--- a/sound/pci/hda/patch_via.c
+++ b/sound/pci/hda/patch_via.c
@@ -4942,7 +4942,7 @@ static int patch_vt1718S(struct hda_codec *codec)
4942 codec->patch_ops = via_patch_ops; 4942 codec->patch_ops = via_patch_ops;
4943 4943
4944 codec->patch_ops.init = via_auto_init; 4944 codec->patch_ops.init = via_auto_init;
4945 codec->patch_ops.unsol_event = via_unsol_event, 4945 codec->patch_ops.unsol_event = via_unsol_event;
4946 4946
4947#ifdef CONFIG_SND_HDA_POWER_SAVE 4947#ifdef CONFIG_SND_HDA_POWER_SAVE
4948 spec->loopback.amplist = vt1718S_loopbacks; 4948 spec->loopback.amplist = vt1718S_loopbacks;
@@ -5432,7 +5432,7 @@ static int patch_vt1716S(struct hda_codec *codec)
5432 codec->patch_ops = via_patch_ops; 5432 codec->patch_ops = via_patch_ops;
5433 5433
5434 codec->patch_ops.init = via_auto_init; 5434 codec->patch_ops.init = via_auto_init;
5435 codec->patch_ops.unsol_event = via_unsol_event, 5435 codec->patch_ops.unsol_event = via_unsol_event;
5436 5436
5437#ifdef CONFIG_SND_HDA_POWER_SAVE 5437#ifdef CONFIG_SND_HDA_POWER_SAVE
5438 spec->loopback.amplist = vt1716S_loopbacks; 5438 spec->loopback.amplist = vt1716S_loopbacks;
@@ -5785,7 +5785,7 @@ static int patch_vt2002P(struct hda_codec *codec)
5785 codec->patch_ops = via_patch_ops; 5785 codec->patch_ops = via_patch_ops;
5786 5786
5787 codec->patch_ops.init = via_auto_init; 5787 codec->patch_ops.init = via_auto_init;
5788 codec->patch_ops.unsol_event = via_unsol_event, 5788 codec->patch_ops.unsol_event = via_unsol_event;
5789 5789
5790#ifdef CONFIG_SND_HDA_POWER_SAVE 5790#ifdef CONFIG_SND_HDA_POWER_SAVE
5791 spec->loopback.amplist = vt2002P_loopbacks; 5791 spec->loopback.amplist = vt2002P_loopbacks;
@@ -6139,7 +6139,7 @@ static int patch_vt1812(struct hda_codec *codec)
6139 codec->patch_ops = via_patch_ops; 6139 codec->patch_ops = via_patch_ops;
6140 6140
6141 codec->patch_ops.init = via_auto_init; 6141 codec->patch_ops.init = via_auto_init;
6142 codec->patch_ops.unsol_event = via_unsol_event, 6142 codec->patch_ops.unsol_event = via_unsol_event;
6143 6143
6144#ifdef CONFIG_SND_HDA_POWER_SAVE 6144#ifdef CONFIG_SND_HDA_POWER_SAVE
6145 spec->loopback.amplist = vt1812_loopbacks; 6145 spec->loopback.amplist = vt1812_loopbacks;