[PATCH -next] drm/i915: simplify the return expression of i915_driver_release()

From: Qinglang Miao
Date: Mon Sep 21 2020 - 09:13:37 EST


Simplify the return expression.

Signed-off-by: Qinglang Miao <miaoqinglang@xxxxxxxxxx>
---
drivers/gpu/drm/i915/i915_drv.c | 7 +------
1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/drivers/gpu/drm/i915/i915_drv.c b/drivers/gpu/drm/i915/i915_drv.c
index acc32066c..a594bb4aa 100644
--- a/drivers/gpu/drm/i915/i915_drv.c
+++ b/drivers/gpu/drm/i915/i915_drv.c
@@ -985,13 +985,8 @@ static void i915_driver_release(struct drm_device *dev)
static int i915_driver_open(struct drm_device *dev, struct drm_file *file)
{
struct drm_i915_private *i915 = to_i915(dev);
- int ret;

- ret = i915_gem_open(i915, file);
- if (ret)
- return ret;
-
- return 0;
+ return i915_gem_open(i915, file);
}

/**
--
2.23.0