-
由 Elad Wexler 提交于
sysfs_override_clocksource(): The expression 'if (ret >= 0)' is always true. This will cause clocksource_select() to always run. Thus modified ret to be of type ssize_t. sysfs_unbind_clocksource(): The expression 'if (ret < 0)' is always false. So in case sysfs_get_uname() failed, the expression won't take an effect. Thus modified ret to be of type ssize_t. Signed-off-by: NElad Wexler <elad.wexler@gmail.com> Signed-off-by: NJohn Stultz <john.stultz@linaro.org>
233bcb41