diff options
author | Takashi Iwai <tiwai@suse.de> | 2013-11-20 15:41:20 +0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2013-11-26 16:42:38 +0400 |
commit | a40e0a880b34d95f583552be7fd3905b6b4e6891 (patch) | |
tree | cc07451d034f4b0200b34eb4d1c9ed3dcd93f331 /sound/pci/hda/hda_codec.h | |
parent | f0639272d6c8e4706ea6d1b0dbc6eb83eaaff412 (diff) | |
download | linux-a40e0a880b34d95f583552be7fd3905b6b4e6891.tar.xz |
ALSA: hda - Refactor pm notification in hda_codec.c
No functional change.
- codec->pm_down_notified flag is renamed to codec->pm_up_notified
flag (and takes the reversed meaning), which is managed solely in
hda_call_pm_notify() now.
- The explicit call of hda_call_pm_notify() is moved into
hda_keep_power_on().
- Removed a redundant call of hda_call_pm_notify() in
snd_hda_power_up(), as it's called in hda_call_codec_resume()
anyway.
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, 1 insertions, 1 deletions
diff --git a/sound/pci/hda/hda_codec.h b/sound/pci/hda/hda_codec.h index 14e4b5a9c43c..a3e5f45d74c1 100644 --- a/sound/pci/hda/hda_codec.h +++ b/sound/pci/hda/hda_codec.h @@ -908,7 +908,7 @@ struct hda_codec { #ifdef CONFIG_PM unsigned int power_on :1; /* current (global) power-state */ unsigned int d3_stop_clk:1; /* support D3 operation without BCLK */ - unsigned int pm_down_notified:1; /* PM notified to controller */ + unsigned int pm_up_notified:1; /* PM notified to controller */ unsigned int in_pm:1; /* suspend/resume being performed */ int power_transition; /* power-state in transition */ int power_count; /* current (global) power refcount */ |