mirror of https://github.com/hak5/openwrt-owl.git
ar71xx: drivers/ar71xx_wdt: fix size argument passed to copy_to_user()
Signed-off-by: Arnaud Lacombe <lacombar@gmail.com> SVN-Revision: 23983owl
parent
3106aea40b
commit
920a34c0ce
|
@ -156,7 +156,7 @@ static long ar71xx_wdt_ioctl(struct file *file,
|
|||
case WDIOC_GETSUPPORT:
|
||||
ret = copy_to_user((struct watchdog_info *)arg,
|
||||
&ar71xx_wdt_info,
|
||||
sizeof(&ar71xx_wdt_info)) ? -EFAULT : 0;
|
||||
sizeof(ar71xx_wdt_info)) ? -EFAULT : 0;
|
||||
break;
|
||||
|
||||
case WDIOC_GETSTATUS:
|
||||
|
|
Loading…
Reference in New Issue