We found a compilation error that we thought was caused by the 3DLUT
patch; later on, we figured out the root cause of the problem, but we
already applied the revert in the wrong patch. This commit brings it
back  the 3DLUT fix.
Acked-by: Agustin Gutierrez <agustin.gutierrez@amd.com>
Tested-by: Daniel Wheeler <daniel.wheeler@amd.com>
Signed-off-by: Aric Cyr <aric.cyr@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
                        update_flags->bits.gamma_change = 1;
        }
 
+       if (u->lut3d_func || u->func_shaper)
+               update_flags->bits.lut_3d = 1;
+
        if (u->hdr_mult.value)
                if (u->hdr_mult.value != u->surface->hdr_mult.value) {
                        update_flags->bits.hdr_mult = 1;
 
        if (update_flags->bits.input_csc_change
                        || update_flags->bits.coeff_reduction_change
+                       || update_flags->bits.lut_3d
                        || update_flags->bits.gamma_change
                        || update_flags->bits.gamut_remap_change) {
                type = UPDATE_TYPE_FULL;
 
                uint32_t bandwidth_change:1;
                uint32_t clock_change:1;
                uint32_t stereo_format_change:1;
+               uint32_t lut_3d:1;
                uint32_t full_update:1;
        } bits;