Skip to content

Commit 85016f6

Browse files
fsaudmripard
authored andcommitted
drm/sun4i: Return if frontend is not present
Added return statement in sun4i_layer_format_mod_supported() in case frontend is not present. Signed-off-by: Saud Farooqui <farooqui_saud@hotmail.com> Signed-off-by: Maxime Ripard <maxime@cerno.tech> Link: https://patchwork.freedesktop.org/patch/msgid/PA4P189MB1421E93EF5F8E8E00E71B7878BB29@PA4P189MB1421.EURP189.PROD.OUTLOOK.COM
1 parent 3026b5c commit 85016f6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/gpu/drm/sun4i/sun4i_layer.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ static bool sun4i_layer_format_mod_supported(struct drm_plane *plane,
117117
struct sun4i_layer *layer = plane_to_sun4i_layer(plane);
118118

119119
if (IS_ERR_OR_NULL(layer->backend->frontend))
120-
sun4i_backend_format_is_supported(format, modifier);
120+
return sun4i_backend_format_is_supported(format, modifier);
121121

122122
return sun4i_backend_format_is_supported(format, modifier) ||
123123
sun4i_frontend_format_is_supported(format, modifier);

0 commit comments

Comments
 (0)