DRM: gpu: radeon: Fixed coding style issues
Fixed braces, an unnecessary if statement and added a missing space. Reviewed-by: Christian König <christian.koenig@amd.com> Signed-off-by: Sergio Miguéns Iglesias <sergio@lony.xyz> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
c841e55274
commit
b5768a78d2
@ -54,6 +54,7 @@ radeonfb_open(struct fb_info *info, int user)
|
||||
struct radeon_fbdev *rfbdev = info->par;
|
||||
struct radeon_device *rdev = rfbdev->rdev;
|
||||
int ret = pm_runtime_get_sync(rdev->ddev->dev);
|
||||
|
||||
if (ret < 0 && ret != -EACCES) {
|
||||
pm_runtime_mark_last_busy(rdev->ddev->dev);
|
||||
pm_runtime_put_autosuspend(rdev->ddev->dev);
|
||||
@ -196,9 +197,8 @@ static int radeonfb_create_pinned_object(struct radeon_fbdev *rfbdev,
|
||||
radeon_bo_check_tiling(rbo, 0, 0);
|
||||
ret = radeon_bo_kmap(rbo, NULL);
|
||||
radeon_bo_unreserve(rbo);
|
||||
if (ret) {
|
||||
if (ret)
|
||||
goto out_unref;
|
||||
}
|
||||
|
||||
*gobj_p = gobj;
|
||||
return 0;
|
||||
@ -294,9 +294,6 @@ static int radeonfb_create(struct drm_fb_helper *helper,
|
||||
return 0;
|
||||
|
||||
out:
|
||||
if (rbo) {
|
||||
|
||||
}
|
||||
if (fb && ret) {
|
||||
drm_gem_object_put(gobj);
|
||||
drm_framebuffer_unregister_private(fb);
|
||||
|
Loading…
x
Reference in New Issue
Block a user