drm: sti: Fix return value check in sti_drm_platform_probe()
authorWei Yongjun <yongjun_wei@trendmicro.com.cn>
Tue, 26 Aug 2014 10:24:24 +0000 (12:24 +0200)
committerBenjamin Gaignard <benjamin.gaignard@linaro.org>
Tue, 26 Aug 2014 12:16:51 +0000 (14:16 +0200)
commiteacd9aa98bdeef5ba19072d3f07dfcccd24988f2
treed2811163841b4b1cab93f56d0a4313e4fe6246ac
parent5024a2b7ae9a92b8ec97ac1507efb283778480ce
drm: sti: Fix return value check in sti_drm_platform_probe()

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

Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
drivers/gpu/drm/sti/sti_drm_drv.c