Skip to content

Commit

Permalink
sound: use semicolons to end statements
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Stephen Rothwell authored and Takashi Iwai committed Oct 12, 2009
1 parent 377ff31 commit 0f48327
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions sound/pci/hda/patch_via.c
Original file line number Diff line number Diff line change
Expand Up @@ -4942,7 +4942,7 @@ static int patch_vt1718S(struct hda_codec *codec)
codec->patch_ops = via_patch_ops;

codec->patch_ops.init = via_auto_init;
codec->patch_ops.unsol_event = via_unsol_event,
codec->patch_ops.unsol_event = via_unsol_event;

#ifdef CONFIG_SND_HDA_POWER_SAVE
spec->loopback.amplist = vt1718S_loopbacks;
Expand Down Expand Up @@ -5432,7 +5432,7 @@ static int patch_vt1716S(struct hda_codec *codec)
codec->patch_ops = via_patch_ops;

codec->patch_ops.init = via_auto_init;
codec->patch_ops.unsol_event = via_unsol_event,
codec->patch_ops.unsol_event = via_unsol_event;

#ifdef CONFIG_SND_HDA_POWER_SAVE
spec->loopback.amplist = vt1716S_loopbacks;
Expand Down Expand Up @@ -5785,7 +5785,7 @@ static int patch_vt2002P(struct hda_codec *codec)
codec->patch_ops = via_patch_ops;

codec->patch_ops.init = via_auto_init;
codec->patch_ops.unsol_event = via_unsol_event,
codec->patch_ops.unsol_event = via_unsol_event;

#ifdef CONFIG_SND_HDA_POWER_SAVE
spec->loopback.amplist = vt2002P_loopbacks;
Expand Down Expand Up @@ -6139,7 +6139,7 @@ static int patch_vt1812(struct hda_codec *codec)
codec->patch_ops = via_patch_ops;

codec->patch_ops.init = via_auto_init;
codec->patch_ops.unsol_event = via_unsol_event,
codec->patch_ops.unsol_event = via_unsol_event;

#ifdef CONFIG_SND_HDA_POWER_SAVE
spec->loopback.amplist = vt1812_loopbacks;
Expand Down

0 comments on commit 0f48327

Please sign in to comment.