From: Duan Jiong Date: Wed, 6 Nov 2013 07:56:39 +0000 (+0800) Subject: block: replace IS_ERR and PTR_ERR with PTR_ERR_OR_ZERO X-Git-Tag: v3.13-rc1~68^2~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c7d1ba417c7cb7297d14dd47a390ec90ce548d5c;p=kernel%2Fkernel-generic.git 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 Signed-off-by: Jens Axboe --- diff --git a/block/ioctl.c b/block/ioctl.c index a31d91d9b..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)