On 04/27, Viresh Kumar wrote:
Some of the routines have used -ENOSYS for the cases where the functionality isn't implemented in the kernel. But ENOSYS is supposed to be used only for syscalls.
Replace that with -ENOTSUPP, which specifically means that the operation isn't supported.
While at it, replace exiting -EINVAL errors for similar cases to -ENOTSUPP.
Signed-off-by: Viresh Kumar viresh.kumar@linaro.org
Reviewed-by: Stephen Boyd sboyd@codeaurora.org