ion: remove IS_ERR_OR_NULL
authorColin Cross <ccross@android.com>
Wed, 21 Aug 2013 04:31:34 +0000 (21:31 -0700)
committerColin Cross <ccross@android.com>
Fri, 20 Sep 2013 04:03:32 +0000 (23:03 -0500)
commit846b79b79391558e07b088193e14affe89d3be1b
treed29f58f703d4100013752f2bb34a46a18b1056d1
parentd37aa151f874563a35d49a0ff0a129ef332c5e9e
ion: remove IS_ERR_OR_NULL

IS_ERR_OR_NULL is often part of a bad pattern that can accidentally
return 0 on error:
if (IS_ERR_OR_NULL(ptr))
    return PTR_ERR(ptr);

It also usually means that the errors of a function are not well
defined.  Replace all uses in ion.c by ensure that the return
type of any function in ion is an ERR_PTR.

Specify that the expected return value from map_kernel or map_dma
heap ops is ERR_PTR, and warn if a heap returns NULL.

Change-Id: I6e7ea0d2e62fa08d4e372a7ef6da649f7a62289c
Signed-off-by: Colin Cross <ccross@android.com>
drivers/gpu/ion/ion.c
drivers/gpu/ion/ion_priv.h