]> git.baikalelectronics.ru Git - kernel.git/commit
watchdog: ts72xx_wdt: cleanup return codes in ioctl
authorDan Carpenter <dan.carpenter@oracle.com>
Fri, 23 Aug 2013 09:38:32 +0000 (12:38 +0300)
committerWim Van Sebroeck <wim@iguana.be>
Sun, 17 Nov 2013 18:36:59 +0000 (19:36 +0100)
commita5d93a5459f8d1216222e2f968a10baa82cf0aa6
treefad8c2ce78aa51b679d0ac0a561d3216d92eef31
parent640b2d97e60a0615b7e4ea10cf033c97e58e406e
watchdog: ts72xx_wdt: cleanup return codes in ioctl

There seems to be some confusion here which functions return positive
numbers and which return negative error codes.

copy_to_user() returns the number of bytes remaining to be copied but we
want to return -EFAULT.

The rest is just clean up.  get_user() actually returns zero on success
and -EFAULT on error so we can preserve the error code.  The
timeout_to_regval() function returns -EINVAL on failure, but we can
propogate that back instead of hardcoding -EINVAL ourselves.

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Reviewed-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
--
drivers/watchdog/ts72xx_wdt.c