From: Takashi Iwai Date: Tue, 28 Aug 2012 23:39:25 +0000 (-0700) Subject: ALSA: hda - Optimize bitfield usage in struct hda_codec X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=4b927345a38c8e9eb2482c091f96ac06884aff8e;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git ALSA: hda - Optimize bitfield usage in struct hda_codec Move up a few bitfields to be packed into a single int. Signed-off-by: Takashi Iwai --- diff --git a/sound/pci/hda/hda_codec.h b/sound/pci/hda/hda_codec.h index 7e1709cb8995..9ac477334d2d 100644 --- a/sound/pci/hda/hda_codec.h +++ b/sound/pci/hda/hda_codec.h @@ -867,6 +867,8 @@ struct hda_codec { unsigned int epss:1; /* supporting EPSS? */ #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 d3_stop_clk_ok:1; /* BCLK can stop */ int power_transition; /* power-state in transition */ int power_count; /* current (global) power refcount */ struct delayed_work power_work; /* delayed task for powerdown */ @@ -874,9 +876,6 @@ struct hda_codec { unsigned long power_off_acct; unsigned long power_jiffies; spinlock_t power_lock; - - unsigned int d3_stop_clk:1; /* support D3 operation without BCLK */ - unsigned int d3_stop_clk_ok:1; /* BCLK can stop */ #endif /* codec-specific additional proc output */