]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
ALSA: hda - Fix build error with CONFIG_SND_HDA_POWER_SAVE
authorTakashi Iwai <tiwai@suse.de>
Fri, 28 Nov 2008 06:22:18 +0000 (07:22 +0100)
committerTakashi Iwai <tiwai@suse.de>
Fri, 28 Nov 2008 06:22:18 +0000 (07:22 +0100)
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>
sound/pci/hda/hda_intel.c

index f17ccd51335047f5b2682809188778aaaf9551ce..8aee322313ed909860de37ef73a7036318938251 100644 (file)
@@ -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