From: David Kershner Date: Tue, 18 Apr 2017 20:55:13 +0000 (-0400) Subject: staging: unisys: visorbus: remove noisy postcode in bus_destroy X-Git-Tag: v4.12-rc1~84^2~66 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=5e259c4b0667edb1c3d24d9f698465e496d2c569;p=linux.git staging: unisys: visorbus: remove noisy postcode in bus_destroy Since kzalloc will display error the postcode becomes redundant, it can be removed. Signed-off-by: David Kershner Reviewed-by: Tim Sell Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/unisys/visorbus/visorchipset.c b/drivers/staging/unisys/visorbus/visorchipset.c index 07a3ba2904ef..5ae1763a3972 100644 --- a/drivers/staging/unisys/visorbus/visorchipset.c +++ b/drivers/staging/unisys/visorbus/visorchipset.c @@ -682,9 +682,6 @@ bus_destroy(struct controlvm_message *inmsg) if (inmsg->hdr.flags.response_expected == 1) { pmsg_hdr = kzalloc(sizeof(*pmsg_hdr), GFP_KERNEL); if (!pmsg_hdr) { - POSTCODE_LINUX(MALLOC_FAILURE_PC, cmd, - bus_info->chipset_bus_no, - DIAG_SEVERITY_ERR); err = -ENOMEM; goto err_respond; }