Commit 5e31896a authored by Jason Yan's avatar Jason Yan Committed by Wim Van Sebroeck
Browse files

watchdog: riowd: remove unneeded semicolon



Fix the following coccicheck warning:

drivers/watchdog/riowd.c:144:2-3: Unneeded semicolon

Signed-off-by: default avatarJason Yan <yanaijie@huawei.com>
Reviewed-by: default avatarGuenter Roeck <linux@roeck-us.net>
Link: https://lore.kernel.org/r/20200428063333.2743-1-yanaijie@huawei.com


Signed-off-by: default avatarGuenter Roeck <linux@roeck-us.net>
Signed-off-by: default avatarWim Van Sebroeck <wim@linux-watchdog.org>
parent 72a9e7fe
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -141,7 +141,7 @@ static long riowd_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)

	default:
		return -EINVAL;
	};
	}

	return 0;
}