diff options
author | Takashi Iwai <tiwai@suse.de> | 2012-06-06 12:17:20 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2012-06-06 12:17:45 +0200 |
commit | 167d2d55bfb4628169a57e3adbb1e5b097dca0f5 (patch) | |
tree | 76c8278deddef67437178c336e920fb801bcd229 /sound/pci/hda/hda_proc.c | |
parent | ce63f3ba256a48023b425a4a6792f8da03d00948 (diff) |
ALSA: hda - Show D3cold state in proc files
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/hda/hda_proc.c')
-rw-r--r-- | sound/pci/hda/hda_proc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/pci/hda/hda_proc.c b/sound/pci/hda/hda_proc.c index fb9ef132f13..1dd9dbeeef6 100644 --- a/sound/pci/hda/hda_proc.c +++ b/sound/pci/hda/hda_proc.c @@ -426,10 +426,10 @@ static void print_digital_conv(struct snd_info_buffer *buffer, static const char *get_pwr_state(u32 state) { - static const char * const buf[4] = { - "D0", "D1", "D2", "D3" + static const char * const buf[] = { + "D0", "D1", "D2", "D3", "D3cold" }; - if (state < 4) + if (state < ARRAY_SIZE(buf)) return buf[state]; return "UNKNOWN"; } |