> -----Original Message----- > From: Intel-gfx <intel-gfx-bounces@xxxxxxxxxxxxxxxxxxxxx> On Behalf Of Ville > Syrjala > Sent: Saturday, July 18, 2020 2:44 AM > To: intel-gfx@xxxxxxxxxxxxxxxxxxxxx > Subject: [PATCH 06/20] drm/i915: Shuffle chv_cgm_gamma_pack() > around a bit > > From: Ville Syrjälä <ville.syrjala@xxxxxxxxxxxxxxx> > > Move chv_cgm_gamma_pack() next to the other CGM gamma functions. > Right now it's stuck in the middle of the CGM degamma functions. Reviewed-by: Uma Shankar <uma.shankar@xxxxxxxxx> > Signed-off-by: Ville Syrjälä <ville.syrjala@xxxxxxxxxxxxxxx> > --- > drivers/gpu/drm/i915/display/intel_color.c | 14 +++++++------- > 1 file changed, 7 insertions(+), 7 deletions(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_color.c > b/drivers/gpu/drm/i915/display/intel_color.c > index 37a4fede7bc0..260bbbd5bbf2 100644 > --- a/drivers/gpu/drm/i915/display/intel_color.c > +++ b/drivers/gpu/drm/i915/display/intel_color.c > @@ -1030,13 +1030,6 @@ static u32 chv_cgm_degamma_udw(const struct > drm_color_lut *color) > return drm_color_lut_extract(color->red, 14); } > > -static void chv_cgm_gamma_pack(struct drm_color_lut *entry, u32 ldw, u32 > udw) -{ > - entry->green = > intel_color_lut_pack(REG_FIELD_GET(CGM_PIPE_GAMMA_GREEN_MASK, ldw), > 10); > - entry->blue = > intel_color_lut_pack(REG_FIELD_GET(CGM_PIPE_GAMMA_BLUE_MASK, ldw), 10); > - entry->red = > intel_color_lut_pack(REG_FIELD_GET(CGM_PIPE_GAMMA_RED_MASK, udw), 10); > -} > - > static void chv_load_cgm_degamma(struct intel_crtc *crtc, > const struct drm_property_blob *blob) { @@ - > 1064,6 +1057,13 @@ static u32 chv_cgm_gamma_udw(const struct > drm_color_lut *color) > return drm_color_lut_extract(color->red, 10); } > > +static void chv_cgm_gamma_pack(struct drm_color_lut *entry, u32 ldw, > +u32 udw) { > + entry->green = > intel_color_lut_pack(REG_FIELD_GET(CGM_PIPE_GAMMA_GREEN_MASK, ldw), > 10); > + entry->blue = > intel_color_lut_pack(REG_FIELD_GET(CGM_PIPE_GAMMA_BLUE_MASK, ldw), 10); > + entry->red = > +intel_color_lut_pack(REG_FIELD_GET(CGM_PIPE_GAMMA_RED_MASK, udw), > 10); > +} > + > static void chv_load_cgm_gamma(struct intel_crtc *crtc, > const struct drm_property_blob *blob) { > -- > 2.26.2 > > _______________________________________________ > Intel-gfx mailing list > Intel-gfx@xxxxxxxxxxxxxxxxxxxxx > https://lists.freedesktop.org/mailman/listinfo/intel-gfx _______________________________________________ Intel-gfx mailing list Intel-gfx@xxxxxxxxxxxxxxxxxxxxx https://lists.freedesktop.org/mailman/listinfo/intel-gfx