[WATCHDOG] omap_wdt.c - default error for IOCTL is -ENOTTY
The default value for an unknown ioctl call is -ENOTTY. Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
This commit is contained in:
Родитель
6abe78bf19
Коммит
1bf1496d41
|
@ -197,7 +197,7 @@ omap_wdt_ioctl(struct inode *inode, struct file *file,
|
||||||
|
|
||||||
switch (cmd) {
|
switch (cmd) {
|
||||||
default:
|
default:
|
||||||
return -ENOIOCTLCMD;
|
return -ENOTTY;
|
||||||
case WDIOC_GETSUPPORT:
|
case WDIOC_GETSUPPORT:
|
||||||
return copy_to_user((struct watchdog_info __user *)arg, &ident,
|
return copy_to_user((struct watchdog_info __user *)arg, &ident,
|
||||||
sizeof(ident));
|
sizeof(ident));
|
||||||
|
|
Загрузка…
Ссылка в новой задаче