dri-devel.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] drm/nouveau/subdev: fix simple_return.cocci warnings
       [not found] <201501251512.MZS5lyNx%fengguang.wu@intel.com>
@ 2015-01-25  7:24 ` kbuild test robot
  0 siblings, 0 replies; only message in thread
From: kbuild test robot @ 2015-01-25  7:24 UTC (permalink / raw)
  To: Martin Peres; +Cc: linux-kernel, kbuild-all, dri-devel, Ben Skeggs

drivers/gpu/drm/nouveau/core/subdev/fuse/gm107.c:50:5-8: WARNING: end returns can be simpified

 Simplify a trivial if-return sequence.  Possibly combine with a
 preceding function call.
Generated by: scripts/coccinelle/misc/simple_return.cocci

CC: Martin Peres <martin.peres@free.fr>
Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
---

 gm107.c |    5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

--- a/drivers/gpu/drm/nouveau/core/subdev/fuse/gm107.c
+++ b/drivers/gpu/drm/nouveau/core/subdev/fuse/gm107.c
@@ -47,10 +47,7 @@ gm107_fuse_ctor(struct nouveau_object *p
 
 	ret = nouveau_fuse_create(parent, engine, oclass, &priv);
 	*pobject = nv_object(priv);
-	if (ret)
-		return ret;
-
-	return 0;
+	return ret;
 }
 
 struct nouveau_oclass
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2015-01-25  7:25 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <201501251512.MZS5lyNx%fengguang.wu@intel.com>
2015-01-25  7:24 ` [PATCH] drm/nouveau/subdev: fix simple_return.cocci warnings kbuild test robot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).