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,
-- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

