forked from Minki/linux
staging: drm/omap: Fix usage of IS_ERR_OR_NULL and PTR_ERR
Return -ENOMEM if dmm_txn_init cannot allocate a refill engine. v2: Fix typing issue seen with newer compilers Signed-off-by: Andy Gross <andy.gross@ti.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
9d36976fad
commit
295c799ae4
@ -296,7 +296,7 @@ static int fill(struct tcm_area *area, struct page **pages,
|
||||
|
||||
txn = dmm_txn_init(omap_dmm, area->tcm);
|
||||
if (IS_ERR_OR_NULL(txn))
|
||||
return PTR_ERR(-ENOMEM);
|
||||
return -ENOMEM;
|
||||
|
||||
tcm_for_each_slice(slice, *area, area_s) {
|
||||
struct pat_area p_area = {
|
||||
|
Loading…
Reference in New Issue
Block a user