> Subject: [PATCH 06/13] drm/colorop: Add destroy helper for colorop objects > > Add a helper that performs common cleanup and frees the associated object. > This can be used by drivers if they do not require any driver-specific > teardown. > > Signed-off-by: Chaitanya Kumar Borah <[email protected]>
LGTM, Reviewed-by: Suraj Kandpal <[email protected]> > --- > drivers/gpu/drm/drm_colorop.c | 12 ++++++++++++ > include/drm/drm_colorop.h | 10 ++++++++++ > 2 files changed, 22 insertions(+) > > diff --git a/drivers/gpu/drm/drm_colorop.c b/drivers/gpu/drm/drm_colorop.c > index efe61bdd9b24..4b27804bb0bd 100644 > --- a/drivers/gpu/drm/drm_colorop.c > +++ b/drivers/gpu/drm/drm_colorop.c > @@ -180,6 +180,18 @@ void drm_colorop_cleanup(struct drm_colorop > *colorop) } EXPORT_SYMBOL(drm_colorop_cleanup); > > +/** > + * drm_colorop_destroy() - Helper for colorop destruction > + * > + * @colorop: colorop to destroy > + */ > +void drm_colorop_destroy(struct drm_colorop *colorop) { > + drm_colorop_cleanup(colorop); > + kfree(colorop); > +} > +EXPORT_SYMBOL(drm_colorop_destroy); > + > /** > * drm_colorop_pipeline_destroy - Helper for color pipeline destruction > * > diff --git a/include/drm/drm_colorop.h b/include/drm/drm_colorop.h index > 45d1b1d3faf9..ee6454b08b2d 100644 > --- a/include/drm/drm_colorop.h > +++ b/include/drm/drm_colorop.h > @@ -440,6 +440,16 @@ void drm_colorop_atomic_destroy_state(struct > drm_colorop *colorop, > */ > void drm_colorop_reset(struct drm_colorop *colorop); > > +/** > + * drm_colorop_destroy - destroy colorop > + * @colorop: drm colorop > + * > + * Destroys @colorop by performing common DRM cleanup and freeing the > + * colorop object. This can be used by drivers if they do not > + * require any driver-specific teardown. > + */ > +void drm_colorop_destroy(struct drm_colorop *colorop); > + > /** > * drm_colorop_index - find the index of a registered colorop > * @colorop: colorop to find index for > -- > 2.25.1
