mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-15 09:34:17 +00:00
watchdog: booke_wdt: fix ioctl status flags
The WDIOC_GETSTATUS & WDIOC_GETBOOTSTATUS ioctl calls return the WDIOF_* flags and nothing else. Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
This commit is contained in:
parent
76550d3292
commit
8b18085a92
@ -137,12 +137,12 @@ static long booke_wdt_ioctl(struct file *file,
|
|||||||
if (copy_to_user((void *)arg, &ident, sizeof(ident)))
|
if (copy_to_user((void *)arg, &ident, sizeof(ident)))
|
||||||
return -EFAULT;
|
return -EFAULT;
|
||||||
case WDIOC_GETSTATUS:
|
case WDIOC_GETSTATUS:
|
||||||
return put_user(ident.options, p);
|
return put_user(0, p);
|
||||||
case WDIOC_GETBOOTSTATUS:
|
case WDIOC_GETBOOTSTATUS:
|
||||||
/* XXX: something is clearing TSR */
|
/* XXX: something is clearing TSR */
|
||||||
tmp = mfspr(SPRN_TSR) & TSR_WRS(3);
|
tmp = mfspr(SPRN_TSR) & TSR_WRS(3);
|
||||||
/* returns 1 if last reset was caused by the WDT */
|
/* returns CARDRESET if last reset was caused by the WDT */
|
||||||
return (tmp ? 1 : 0);
|
return (tmp ? WDIOF_CARDRESET : 0);
|
||||||
case WDIOC_SETOPTIONS:
|
case WDIOC_SETOPTIONS:
|
||||||
if (get_user(tmp, p))
|
if (get_user(tmp, p))
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user