diff options
author | Tom Rix <[email protected]> | 2022-03-12 06:53:27 -0800 |
---|---|---|
committer | Hans de Goede <[email protected]> | 2022-03-17 19:47:24 +0100 |
commit | 6060a75e77fb05c9d54ed41cccc496dd98054b57 (patch) | |
tree | a6518b60ccd49c2c7b037293a3ce673a13c894e5 /lib/mpi/mpi-sub-ui.c | |
parent | 286e937efbc7177c114e80aae9b402131e3886c1 (diff) |
platform/x86: thinkpad_acpi: consistently check fan_get_status return.
Clang static analysis returns this false positive
thinkpad_acpi.c:8926:19: warning: The left operand
of '!=' is a garbage value
(status != 0) ? "enabled" : "disabled", status);
~~~~~~ ^
The return of fan_get_status* is checked inconsistenly.
Sometime ret < 0 is an error, sometimes !ret.
Both fan_get_status() and fan_get_status_safe() return
0 on success and return negative otherwise. Change
the checks for error, ret < 0, into checks for
not success, !ret.
Signed-off-by: Tom Rix <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Reviewed-by: Hans de Goede <[email protected]>
Signed-off-by: Hans de Goede <[email protected]>
Diffstat (limited to 'lib/mpi/mpi-sub-ui.c')
0 files changed, 0 insertions, 0 deletions