[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1383724623-15801-1-git-send-email-duanj.fnst@cn.fujitsu.com>
Date: Wed, 6 Nov 2013 15:57:03 +0800
From: Duan Jiong <duanj.fnst@...fujitsu.com>
To: kernel@...gutronix.de, linux@....linux.org.uk,
a.zummo@...ertech.it, airlied@...ux.ie, dmitry.torokhov@...il.com,
axboe@...nel.dk
Cc: linux-kernel@...r.kernel.org, rtc-linux@...glegroups.com,
dri-devel@...ts.freedesktop.org, linux-tegra@...r.kernel.org,
linux-input@...r.kernel.org, devel@...verdev.osuosl.org,
Duan Jiong <duanj.fnst@...fujitsu.com>
Subject: [PATCH] block: replace IS_ERR and PTR_ERR with PTR_ERR_OR_ZERO
This patch fixes coccinelle error regarding usage of IS_ERR and
PTR_ERR instead of PTR_ERR_OR_ZERO.
Signed-off-by: Duan Jiong <duanj.fnst@...fujitsu.com>
---
block/ioctl.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/block/ioctl.c b/block/ioctl.c
index a31d91d..7d5c3b2 100644
--- a/block/ioctl.c
+++ b/block/ioctl.c
@@ -64,7 +64,7 @@ static int blkpg_ioctl(struct block_device *bdev, struct blkpg_ioctl_arg __user
part = add_partition(disk, partno, start, length,
ADDPART_FLAG_NONE, NULL);
mutex_unlock(&bdev->bd_mutex);
- return IS_ERR(part) ? PTR_ERR(part) : 0;
+ return PTR_ERR_OR_ZERO(part);
case BLKPG_DEL_PARTITION:
part = disk_get_part(disk, partno);
if (!part)
--
1.8.3.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists