1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-10-02 19:11:59 +03:00

ar71xx: drivers/ar71xx_wdt: fix size argument passed to copy_to_user()

Signed-off-by: Arnaud Lacombe <lacombar@gmail.com>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23983 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
juhosg 2010-11-12 18:52:45 +00:00
parent cc04995115
commit 4355718b98

View File

@ -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: