Commit baf698b0 authored by Daniel Vetter's avatar Daniel Vetter Committed by Dave Airlie

drm: Simplify return value handling in drm_crtc.c

While looking through drm_crtc.c to double-check make locking changes
I've noticed that there's a few other places that would now benefit
from simplified return value handling.

So let's flatten the control flow and replace and always 0 ret with 0
where possible.
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@intel.com>
Reviewed-by: default avatarSean Paul <seanpaul@chromium.org>
Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
parent b0654103
...@@ -683,7 +683,7 @@ int drm_crtc_init_with_planes(struct drm_device *dev, struct drm_crtc *crtc, ...@@ -683,7 +683,7 @@ int drm_crtc_init_with_planes(struct drm_device *dev, struct drm_crtc *crtc,
drm_modeset_lock_init(&crtc->mutex); drm_modeset_lock_init(&crtc->mutex);
ret = drm_mode_object_get(dev, &crtc->base, DRM_MODE_OBJECT_CRTC); ret = drm_mode_object_get(dev, &crtc->base, DRM_MODE_OBJECT_CRTC);
if (ret) if (ret)
goto out; return ret;
crtc->base.properties = &crtc->properties; crtc->base.properties = &crtc->properties;
...@@ -697,9 +697,7 @@ int drm_crtc_init_with_planes(struct drm_device *dev, struct drm_crtc *crtc, ...@@ -697,9 +697,7 @@ int drm_crtc_init_with_planes(struct drm_device *dev, struct drm_crtc *crtc,
if (cursor) if (cursor)
cursor->possible_crtcs = 1 << drm_crtc_index(crtc); cursor->possible_crtcs = 1 << drm_crtc_index(crtc);
out: return 0;
return ret;
} }
EXPORT_SYMBOL(drm_crtc_init_with_planes); EXPORT_SYMBOL(drm_crtc_init_with_planes);
...@@ -1154,7 +1152,7 @@ int drm_universal_plane_init(struct drm_device *dev, struct drm_plane *plane, ...@@ -1154,7 +1152,7 @@ int drm_universal_plane_init(struct drm_device *dev, struct drm_plane *plane,
ret = drm_mode_object_get(dev, &plane->base, DRM_MODE_OBJECT_PLANE); ret = drm_mode_object_get(dev, &plane->base, DRM_MODE_OBJECT_PLANE);
if (ret) if (ret)
goto out; return ret;
drm_modeset_lock_init(&plane->mutex); drm_modeset_lock_init(&plane->mutex);
...@@ -1166,8 +1164,7 @@ int drm_universal_plane_init(struct drm_device *dev, struct drm_plane *plane, ...@@ -1166,8 +1164,7 @@ int drm_universal_plane_init(struct drm_device *dev, struct drm_plane *plane,
if (!plane->format_types) { if (!plane->format_types) {
DRM_DEBUG_KMS("out of memory when allocating plane\n"); DRM_DEBUG_KMS("out of memory when allocating plane\n");
drm_mode_object_put(dev, &plane->base); drm_mode_object_put(dev, &plane->base);
ret = -ENOMEM; return -ENOMEM;
goto out;
} }
memcpy(plane->format_types, formats, format_count * sizeof(uint32_t)); memcpy(plane->format_types, formats, format_count * sizeof(uint32_t));
...@@ -1184,9 +1181,7 @@ int drm_universal_plane_init(struct drm_device *dev, struct drm_plane *plane, ...@@ -1184,9 +1181,7 @@ int drm_universal_plane_init(struct drm_device *dev, struct drm_plane *plane,
dev->mode_config.plane_type_property, dev->mode_config.plane_type_property,
plane->type); plane->type);
out: return 0;
return ret;
} }
EXPORT_SYMBOL(drm_universal_plane_init); EXPORT_SYMBOL(drm_universal_plane_init);
...@@ -1888,7 +1883,6 @@ int drm_mode_getcrtc(struct drm_device *dev, ...@@ -1888,7 +1883,6 @@ int drm_mode_getcrtc(struct drm_device *dev,
{ {
struct drm_mode_crtc *crtc_resp = data; struct drm_mode_crtc *crtc_resp = data;
struct drm_crtc *crtc; struct drm_crtc *crtc;
int ret = 0;
if (!drm_core_check_feature(dev, DRIVER_MODESET)) if (!drm_core_check_feature(dev, DRIVER_MODESET))
return -EINVAL; return -EINVAL;
...@@ -1916,7 +1910,7 @@ int drm_mode_getcrtc(struct drm_device *dev, ...@@ -1916,7 +1910,7 @@ int drm_mode_getcrtc(struct drm_device *dev,
} }
drm_modeset_unlock_crtc(crtc); drm_modeset_unlock_crtc(crtc);
return ret; return 0;
} }
static bool drm_mode_expose_to_userspace(const struct drm_display_mode *mode, static bool drm_mode_expose_to_userspace(const struct drm_display_mode *mode,
...@@ -2094,7 +2088,6 @@ int drm_mode_getencoder(struct drm_device *dev, void *data, ...@@ -2094,7 +2088,6 @@ int drm_mode_getencoder(struct drm_device *dev, void *data,
{ {
struct drm_mode_get_encoder *enc_resp = data; struct drm_mode_get_encoder *enc_resp = data;
struct drm_encoder *encoder; struct drm_encoder *encoder;
int ret = 0;
if (!drm_core_check_feature(dev, DRIVER_MODESET)) if (!drm_core_check_feature(dev, DRIVER_MODESET))
return -EINVAL; return -EINVAL;
...@@ -2115,7 +2108,7 @@ int drm_mode_getencoder(struct drm_device *dev, void *data, ...@@ -2115,7 +2108,7 @@ int drm_mode_getencoder(struct drm_device *dev, void *data,
enc_resp->possible_crtcs = encoder->possible_crtcs; enc_resp->possible_crtcs = encoder->possible_crtcs;
enc_resp->possible_clones = encoder->possible_clones; enc_resp->possible_clones = encoder->possible_clones;
return ret; return 0;
} }
/** /**
...@@ -2198,7 +2191,6 @@ int drm_mode_getplane(struct drm_device *dev, void *data, ...@@ -2198,7 +2191,6 @@ int drm_mode_getplane(struct drm_device *dev, void *data,
struct drm_mode_get_plane *plane_resp = data; struct drm_mode_get_plane *plane_resp = data;
struct drm_plane *plane; struct drm_plane *plane;
uint32_t __user *format_ptr; uint32_t __user *format_ptr;
int ret = 0;
if (!drm_core_check_feature(dev, DRIVER_MODESET)) if (!drm_core_check_feature(dev, DRIVER_MODESET))
return -EINVAL; return -EINVAL;
...@@ -2238,7 +2230,7 @@ int drm_mode_getplane(struct drm_device *dev, void *data, ...@@ -2238,7 +2230,7 @@ int drm_mode_getplane(struct drm_device *dev, void *data,
} }
plane_resp->count_format_types = plane->format_count; plane_resp->count_format_types = plane->format_count;
return ret; return 0;
} }
/* /*
...@@ -2958,7 +2950,7 @@ int drm_mode_addfb(struct drm_device *dev, ...@@ -2958,7 +2950,7 @@ int drm_mode_addfb(struct drm_device *dev,
or->fb_id = r.fb_id; or->fb_id = r.fb_id;
return ret; return 0;
} }
static int format_check(const struct drm_mode_fb_cmd2 *r) static int format_check(const struct drm_mode_fb_cmd2 *r)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment