Author: Ville Syrjälä <ville.syrjala@linux.intel.com> Always name any variable pointing at the adjusted mode as ‘adjustead_mode’. This will make it much easier to identify when we should use the crtc_ timings and when we shoudln’t. Conversion was performed with coccinelle: @@ expression E; identifier I; @@ – struct drm_display_mode *I = &E.adjusted_mode; + struct drm_display_mode *adjusted_mode …