From: Amitoj Kaur Chawla Date: Thu, 25 Feb 2016 14:22:27 +0000 (+0530) Subject: staging: android: ion: tegra: Replace IS_ERR_OR_NULL with IS_ERR X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=dcce1c7c083d80a8230270eb264c90a8d767131f;p=linux-beck.git staging: android: ion: tegra: Replace IS_ERR_OR_NULL with IS_ERR Replace IS_ERR_OR_NULL test with an IS_ERR test since ion_device_create() function returns a valid device or a -PTR_ERR only as evidenced by the comment on the function prototype. Signed-off-by: Amitoj Kaur Chawla Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/android/ion/tegra/tegra_ion.c b/drivers/staging/android/ion/tegra/tegra_ion.c index 88285243d53d..49e55e5acead 100644 --- a/drivers/staging/android/ion/tegra/tegra_ion.c +++ b/drivers/staging/android/ion/tegra/tegra_ion.c @@ -37,7 +37,7 @@ static int tegra_ion_probe(struct platform_device *pdev) sizeof(struct ion_heap *), GFP_KERNEL); idev = ion_device_create(NULL); - if (IS_ERR_OR_NULL(idev)) + if (IS_ERR(idev)) return PTR_ERR(idev); /* create the heaps as specified in the board file */