diff options
author | Takashi Iwai <tiwai@suse.de> | 2008-11-27 12:43:28 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2008-11-27 12:43:28 +0100 |
commit | fee2fba3586f78762ecc5f432dfd3602765a31b3 (patch) | |
tree | 9435bc32c3e41ad74dbcb18d829d8c51227c16c3 /sound/pci/hda/hda_codec.h | |
parent | ALSA: hda - make some functions static (diff) | |
download | linux-fee2fba3586f78762ecc5f432dfd3602765a31b3.tar.xz linux-fee2fba3586f78762ecc5f432dfd3602765a31b3.zip |
ALSA: hda - Move power_save option to hda_intel.c
Move power_save option into hda_intel.c, and make a field in hda_bus,
instead of keeping module parameters in separate files.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/hda/hda_codec.h')
-rw-r--r-- | sound/pci/hda/hda_codec.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sound/pci/hda/hda_codec.h b/sound/pci/hda/hda_codec.h index e1077df5e882..4034625b5997 100644 --- a/sound/pci/hda/hda_codec.h +++ b/sound/pci/hda/hda_codec.h @@ -585,6 +585,7 @@ struct hda_bus_template { void *private_data; struct pci_dev *pci; const char *modelname; + int *power_save; struct hda_bus_ops ops; }; @@ -601,6 +602,7 @@ struct hda_bus { void *private_data; struct pci_dev *pci; const char *modelname; + int *power_save; struct hda_bus_ops ops; /* codec linked list */ |