mirror of
https://github.com/torvalds/linux.git
synced 2024-12-16 08:02:17 +00:00
staging: android: ion: dummy: fix an error code
We should be returning -ENOMEM here instead of zero. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
8b9e418c01
commit
630127f367
@ -71,7 +71,7 @@ static int __init ion_dummy_init(void)
|
||||
heaps = kzalloc(sizeof(struct ion_heap *) * dummy_ion_pdata.nr,
|
||||
GFP_KERNEL);
|
||||
if (!heaps)
|
||||
return PTR_ERR(heaps);
|
||||
return -ENOMEM;
|
||||
|
||||
|
||||
/* Allocate a dummy carveout heap */
|
||||
|
Loading…
Reference in New Issue
Block a user