commit | 2efc6bfadb0b9c873e11ab8da37f4f69aa215d25 | [log] [tgz] |
---|---|---|
author | Saiyam Doshi <saiyamdoshi.in@gmail.com> | Sat Sep 07 23:09:10 2019 +0530 |
committer | Linus Walleij <linus.walleij@linaro.org> | Thu Sep 12 00:05:29 2019 +0100 |
tree | 06a3c905052b37b659e6868bf475f85937ae988d | |
parent | aba30f6f312ccb82b44eaf53db1047e023a97d5c [diff] |
gpio: remove explicit comparison with 0 No need to compare return value with 0. In case of non-zero return value, the if condition will be true. This makes intent a bit more clear to the reader. "if (x) then", compared to "if (x is not zero) then". Signed-off-by: Saiyam Doshi <saiyamdoshi.in@gmail.com> Link: https://lore.kernel.org/r/20190907173910.GA9547@SD Signed-off-by: Linus Walleij <linus.walleij@linaro.org>