leds: sc27xx: Fix return value check in sc27xx_led_probe()
authorWei Yongjun <weiyongjun1@huawei.com>
Tue, 22 May 2018 11:45:56 +0000 (11:45 +0000)
committerJacek Anaszewski <jacek.anaszewski@gmail.com>
Tue, 22 May 2018 19:57:59 +0000 (21:57 +0200)
commit43926c2761bcf3a7a720f707510f9c00b2830bfa
tree38716c1fe05b383e35f859484377db6bd3d2cbfc
parente081c49e30ec2d42ac60e291dff24808fb81a99f
leds: sc27xx: Fix return value check in sc27xx_led_probe()

In case of error, the function dev_get_regmap() returns NULL pointer not
ERR_PTR(). The IS_ERR() test in the return value check should be
replaced with NULL test.

Fixes: e081c49e30ec ("leds: Add Spreadtrum SC27xx breathing light controller driver")
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: Jacek Anaszewski <jacek.anaszewski@gmail.com>
drivers/leds/leds-sc27xx-bltc.c