commit | 1f70e079c773b2c5988b0f0b4d314fc0f6c7a1b8 | [log] [tgz] |
---|---|---|
author | Wei Yongjun <yongjun_wei@trendmicro.com.cn> | Wed Sep 11 06:56:12 2013 +0800 |
committer | Rob Clark <robdclark@gmail.com> | Wed Sep 11 17:31:33 2013 -0400 |
tree | 5fa117c3854eeeeb23d749402e125312e67cf7c3 | |
parent | 198725337ef1f73b73e7dc953c6ffb0799f26ffe [diff] |
drm/msm: fix return value check in ERR_PTR() In case of error, the function drm_prime_pages_to_sg() 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>