hc
2023-12-11 6778948f9de86c3cfaf36725a7c87dcff9ba247f
kernel/drivers/gpu/drm/drm_atomic_state_helper.c
....@@ -141,10 +141,6 @@
141141 drm_property_blob_get(state->ctm);
142142 if (state->gamma_lut)
143143 drm_property_blob_get(state->gamma_lut);
144
-#if defined(CONFIG_ROCKCHIP_DRM_CUBIC_LUT)
145
- if (state->cubic_lut)
146
- drm_property_blob_get(state->cubic_lut);
147
-#endif
148144 state->mode_changed = false;
149145 state->active_changed = false;
150146 state->planes_changed = false;
....@@ -217,9 +213,6 @@
217213 drm_property_blob_put(state->degamma_lut);
218214 drm_property_blob_put(state->ctm);
219215 drm_property_blob_put(state->gamma_lut);
220
-#if defined(CONFIG_ROCKCHIP_DRM_CUBIC_LUT)
221
- drm_property_blob_put(state->cubic_lut);
222
-#endif
223216 }
224217 EXPORT_SYMBOL(__drm_atomic_helper_crtc_destroy_state);
225218