Commit 7d5aa396 authored by Russell King's avatar Russell King

[ARM] Make sys_ipc return ENOSYS for unrecognised IPC calls.

parent 1669a7f4
...@@ -229,7 +229,7 @@ asmlinkage int sys_ipc (uint call, int first, int second, int third, void *ptr, ...@@ -229,7 +229,7 @@ asmlinkage int sys_ipc (uint call, int first, int second, int third, void *ptr,
return sys_shmctl (first, second, return sys_shmctl (first, second,
(struct shmid_ds *) ptr); (struct shmid_ds *) ptr);
default: default:
return -EINVAL; return -ENOSYS;
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment