mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-29 15:43:59 +08:00
drm/i915: Fix cxsr_latency_table reorg
I have re-ordered some struct members in patch: commit44a655cae3
Author: Tvrtko Ursulin <tvrtko.ursulin@intel.com> Date: Thu Oct 13 11:09:23 2016 +0100 drm/i915: Shrink cxsr_latency_table but that particular one is not initialized with named initializers which broke it. Move the bitfields back at the beginning. Space saving is still there. Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com> Fixes:44a655cae3
("drm/i915: Shrink cxsr_latency_table") Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com> Cc: Jani Nikula <jani.nikula@linux.intel.com> Link: http://patchwork.freedesktop.org/patch/msgid/1476453302-7580-1-git-send-email-tvrtko.ursulin@linux.intel.com
This commit is contained in:
parent
2ce5179fe8
commit
c13fb77890
@ -807,14 +807,14 @@ struct intel_watermark_params {
|
||||
};
|
||||
|
||||
struct cxsr_latency {
|
||||
bool is_desktop : 1;
|
||||
bool is_ddr3 : 1;
|
||||
u16 fsb_freq;
|
||||
u16 mem_freq;
|
||||
u16 display_sr;
|
||||
u16 display_hpll_disable;
|
||||
u16 cursor_sr;
|
||||
u16 cursor_hpll_disable;
|
||||
bool is_desktop : 1;
|
||||
bool is_ddr3 : 1;
|
||||
};
|
||||
|
||||
#define to_intel_atomic_state(x) container_of(x, struct intel_atomic_state, base)
|
||||
|
Loading…
Reference in New Issue
Block a user