aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2008-11-28 07:22:18 +0100
committerTakashi Iwai <tiwai@suse.de>2008-11-28 07:22:18 +0100
commit11cd41b893895c76a8f9bee9467f4b0869b5eeb3 (patch)
tree3f1f5f9cf8e3ac3cb79974b394fe9931b0f3161d /sound/pci
parent30d72e9f614e7bd76e28d4d92bd54d90a96905bb (diff)
downloadkernel_samsung_smdk4412-11cd41b893895c76a8f9bee9467f4b0869b5eeb3.zip
kernel_samsung_smdk4412-11cd41b893895c76a8f9bee9467f4b0869b5eeb3.tar.gz
kernel_samsung_smdk4412-11cd41b893895c76a8f9bee9467f4b0869b5eeb3.tar.bz2
ALSA: hda - Fix build error with CONFIG_SND_HDA_POWER_SAVE
Moved power_save field initialization inside a proper ifdef to fix a build error without CONFIG_SND_HDA_POWER_SAVE. Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci')
-rw-r--r--sound/pci/hda/hda_intel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/hda/hda_intel.c b/sound/pci/hda/hda_intel.c
index f17ccd5..8aee322 100644
--- a/sound/pci/hda/hda_intel.c
+++ b/sound/pci/hda/hda_intel.c
@@ -1233,12 +1233,12 @@ static int __devinit azx_codec_create(struct azx *chip, const char *model,
memset(&bus_temp, 0, sizeof(bus_temp));
bus_temp.private_data = chip;
bus_temp.modelname = model;
- bus_temp.power_save = &power_save;
bus_temp.pci = chip->pci;
bus_temp.ops.command = azx_send_cmd;
bus_temp.ops.get_response = azx_get_response;
bus_temp.ops.attach_pcm = azx_attach_pcm_stream;
#ifdef CONFIG_SND_HDA_POWER_SAVE
+ bus_temp.power_save = &power_save;
bus_temp.ops.pm_notify = azx_power_notify;
#endif