2013-06-01 10:00:21

by Thomas Meyer

[permalink] [raw]
Subject: [PATCH] gpu: host1x: drm: Cocci spatch "ptr_ret.spatch"


Signed-off-by: Thomas Meyer <[email protected]>
---

diff -u -p a/drivers/gpu/host1x/drm/drm.c b/drivers/gpu/host1x/drm/drm.c
--- a/drivers/gpu/host1x/drm/drm.c
+++ b/drivers/gpu/host1x/drm/drm.c
@@ -328,10 +328,7 @@ static int tegra_gem_create(struct drm_d

bo = tegra_bo_create_with_handle(file, drm, args->size,
&args->handle);
- if (IS_ERR(bo))
- return PTR_ERR(bo);
-
- return 0;
+ return PTR_RET(bo);
}

static int tegra_gem_mmap(struct drm_device *drm, void *data,
diff -u -p a/drivers/gpu/host1x/drm/gem.c b/drivers/gpu/host1x/drm/gem.c
--- a/drivers/gpu/host1x/drm/gem.c
+++ b/drivers/gpu/host1x/drm/gem.c
@@ -205,10 +205,7 @@ int tegra_bo_dumb_create(struct drm_file

bo = tegra_bo_create_with_handle(file, drm, args->size,
&args->handle);
- if (IS_ERR(bo))
- return PTR_ERR(bo);
-
- return 0;
+ return PTR_RET(bo);
}

int tegra_bo_dumb_map_offset(struct drm_file *file, struct drm_device *drm,