diff options
author | Takashi Iwai <tiwai@suse.de> | 2015-04-10 09:53:04 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2015-04-10 09:53:04 +0200 |
commit | f4d3129c2b580ad2b82aa3211a6216bbf7ad007c (patch) | |
tree | 8f33f18abd32228fd55beeb8e371bdd52ccf9b7a /sound/pci | |
parent | 39d118677baa531cd9ee4c025a34f243746a3d18 (diff) | |
download | linux-f4d3129c2b580ad2b82aa3211a6216bbf7ad007c.tar.gz linux-f4d3129c2b580ad2b82aa3211a6216bbf7ad007c.tar.bz2 linux-f4d3129c2b580ad2b82aa3211a6216bbf7ad007c.zip |
ALSA: hda/realtek - Fix a typo
A comma was used instead of a semicolon, which may lead to a build
error.
Fixes: cffd39668177 ('ALSA: hda/realtek - Fix the regression by widget power-saving')
Reported-by: kbuild test robot <fengguang.wu@intel.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci')
-rw-r--r-- | sound/pci/hda/patch_realtek.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c index acccedf8a4be..12f62af507d9 100644 --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c @@ -5673,7 +5673,7 @@ static int patch_alc269(struct hda_codec *codec) set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT); codec->patch_ops = alc_patch_ops; - codec->patch_ops.stream_pm = snd_hda_gen_stream_pm, + codec->patch_ops.stream_pm = snd_hda_gen_stream_pm; #ifdef CONFIG_PM codec->patch_ops.suspend = alc269_suspend; codec->patch_ops.resume = alc269_resume; |