From: Zhen Lei Date: Wed, 9 Jun 2021 12:23:27 +0000 (+0800) Subject: sunvdc: remove unnecessary oom message X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=6597efa6c58fa9f02f624e3e99bb00e73c32bcb2;p=linux.git sunvdc: remove unnecessary oom message Fixes scripts/checkpatch.pl warning: WARNING: Possible unnecessary 'out of memory' message Remove it can help us save a bit of memory. Signed-off-by: Zhen Lei Signed-off-by: Jens Axboe --- diff --git a/drivers/block/sunvdc.c b/drivers/block/sunvdc.c index 39aeebc6837da..448970491bf8f 100644 --- a/drivers/block/sunvdc.c +++ b/drivers/block/sunvdc.c @@ -1001,9 +1001,8 @@ static int vdc_port_probe(struct vio_dev *vdev, const struct vio_device_id *id) } port = kzalloc(sizeof(*port), GFP_KERNEL); - err = -ENOMEM; if (!port) { - printk(KERN_ERR PFX "Cannot allocate vdc_port.\n"); + err = -ENOMEM; goto err_out_release_mdesc; }