]> Gentwo Git Trees - linux/.git/commit
drm: rcar-du: fix incorrect return in rcar_du_crtc_cleanup()
authorAlok Tiwari <alok.a.tiwari@oracle.com>
Fri, 17 Oct 2025 19:16:21 +0000 (12:16 -0700)
committerTomi Valkeinen <tomi.valkeinen@ideasonboard.com>
Wed, 5 Nov 2025 09:17:26 +0000 (11:17 +0200)
commitc84d874615d9da910186f4e5f00174b8036007ce
treeb5737ca0e50b704a87dc64d37df81bda9f7bae5e
parentdb892a9f7a841575868756017a47921c7dc93042
drm: rcar-du: fix incorrect return in rcar_du_crtc_cleanup()

The rcar_du_crtc_cleanup() function has a void return type, but
incorrectly uses a return statement with a call to drm_crtc_cleanup(),
which also returns void.

Remove the return statement to ensure proper function semantics.
No functional change intended.

Signed-off-by: Alok Tiwari <alok.a.tiwari@oracle.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
Link: https://patch.msgid.link/20251017191634.1454201-1-alok.a.tiwari@oracle.com
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
drivers/gpu/drm/renesas/rcar-du/rcar_du_crtc.c