On 11/12/2020 13:42, Tomi Valkeinen wrote:
+/**
- drm_crtc_supports_legacy_gamma - does the crtc support legacy gamma correction table
- @crtc: CRTC object
- Returns true/false if the given crtc supports setting the legacy gamma
- correction table.
- */
+static bool drm_crtc_supports_legacy_gamma(struct drm_crtc *crtc) +{
- uint32_t gamma_id = crtc->dev->mode_config.gamma_lut_property->base.id;
Userspace-mode strikes again... I'll change uint32_t's to u32 while applying. (But in my defense, there were uint32_t uses already in the code touched by these patches, and drm seems to have lots of uint32_t all around...)
Tomi