From: Wei Yongjun Date: Mon, 10 Sep 2012 04:41:15 +0000 (+0800) Subject: watchdog: move the dereference below the NULL test X-Git-Tag: upstream/snapshot3+hdmi~6674^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b232a70a1735c004f9ee6fdf363def527b9234b6;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git watchdog: move the dereference below the NULL test The dereference should be moved below the NULL test. spatch with a semantic match is used to found this. (http://coccinelle.lip6.fr/) Signed-off-by: Wei Yongjun Signed-off-by: Wim Van Sebroeck --- diff --git a/drivers/watchdog/watchdog_core.c b/drivers/watchdog/watchdog_core.c index 6aa46a9..3796434 100644 --- a/drivers/watchdog/watchdog_core.c +++ b/drivers/watchdog/watchdog_core.c @@ -128,11 +128,12 @@ EXPORT_SYMBOL_GPL(watchdog_register_device); void watchdog_unregister_device(struct watchdog_device *wdd) { int ret; - int devno = wdd->cdev.dev; + int devno; if (wdd == NULL) return; + devno = wdd->cdev.dev; ret = watchdog_dev_unregister(wdd); if (ret) pr_err("error unregistering /dev/watchdog (err=%d)\n", ret);