diff options
author | Julia Lawall <Julia.Lawall@lip6.fr> | 2015-08-24 23:12:27 +0200 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2015-09-14 09:13:43 +0200 |
commit | 5a99233e9bcacc7ea23e173a75bbb7301abd3e6f (patch) | |
tree | 6e1f5abce967ba82a243ff328bcdf0b824b06466 /drivers/pcmcia/sa1111_generic.h | |
parent | pinctrl: qcom: ssbi: convert null test to IS_ERR test (diff) | |
download | linux-5a99233e9bcacc7ea23e173a75bbb7301abd3e6f.tar.xz linux-5a99233e9bcacc7ea23e173a75bbb7301abd3e6f.zip |
pinctrl: digicolor: convert null test to IS_ERR test
Since commit 323de9efdf3e ("pinctrl: make pinctrl_register() return proper
error code"), pinctrl_register returns an error code rather than NULL on
failure. Update a driver that was introduced more recently.
The semantic patch that makes this change is as follows:
(http://coccinelle.lip6.fr/)
// <smpl>
@@
expression e,e1,e2;
@@
e = pinctrl_register(...)
... when != e = e1
if (
- e == NULL
+ IS_ERR(e)
) {
...
return
- e2
+ PTR_ERR(e)
;
}
// </smpl>
Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Acked-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/pcmcia/sa1111_generic.h')
0 files changed, 0 insertions, 0 deletions