]> Gentwo Git Trees - linux/.git/commitdiff
drm/i915/color: Add helper to create intel colorop
authorChaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
Wed, 3 Dec 2025 08:51:59 +0000 (14:21 +0530)
committerJani Nikula <jani.nikula@intel.com>
Thu, 4 Dec 2025 17:43:46 +0000 (19:43 +0200)
Add intel colorop create helper

v2:
 - Make function names consistent (Jani)
 - Remove redundant code related to colorop state
 - Refactor code to separate files

Reviewed-by: Suraj Kandpal <suraj.kandpal@intel.com>
Signed-off-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
Signed-off-by: Uma Shankar <uma.shankar@intel.com>
Link: https://patch.msgid.link/20251203085211.3663374-4-uma.shankar@intel.com
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
drivers/gpu/drm/i915/display/intel_colorop.c
drivers/gpu/drm/i915/display/intel_colorop.h

index eaab50d2d126fa474cc130107ad0c4adcea40d8f..f2fc0d8780ceea108be5cb2dd5cb020da25cc642 100644 (file)
@@ -8,3 +8,28 @@ struct intel_colorop *to_intel_colorop(struct drm_colorop *colorop)
 {
        return container_of(colorop, struct intel_colorop, base);
 }
+
+struct intel_colorop *intel_colorop_alloc(void)
+{
+       struct intel_colorop *colorop;
+
+       colorop = kzalloc(sizeof(*colorop), GFP_KERNEL);
+       if (!colorop)
+               return ERR_PTR(-ENOMEM);
+
+       return colorop;
+}
+
+struct intel_colorop *intel_colorop_create(enum intel_color_block id)
+{
+       struct intel_colorop *colorop;
+
+       colorop = intel_colorop_alloc();
+
+       if (IS_ERR(colorop))
+               return colorop;
+
+       colorop->id = id;
+
+       return colorop;
+}
index 23a29a5659498ef7685d78d869bed0dd55e5858a..21d58eb9f3d0f6518fa7eaaa5202399874002603 100644 (file)
@@ -9,5 +9,7 @@
 #include "intel_display_types.h"
 
 struct intel_colorop *to_intel_colorop(struct drm_colorop *colorop);
+struct intel_colorop *intel_colorop_alloc(void);
+struct intel_colorop *intel_colorop_create(enum intel_color_block id);
 
 #endif /* __INTEL_COLOROP_H__ */