From: David Kershner Date: Tue, 18 Apr 2017 20:55:14 +0000 (-0400) Subject: staging: unisys: visorbus: remove noisy postcode from visorchipset_exit X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=81aaca2f5de6f4b72a15e2fbb19fa7e4fff329e4;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git staging: unisys: visorbus: remove noisy postcode from visorchipset_exit The postcodes in visorchipset_exit were not displaying errors, they can just 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 5ae1763a3972..fe5f588add91 100644 --- a/drivers/staging/unisys/visorbus/visorchipset.c +++ b/drivers/staging/unisys/visorbus/visorchipset.c @@ -1925,8 +1925,6 @@ error: static int visorchipset_exit(struct acpi_device *acpi_device) { - POSTCODE_LINUX(DRIVER_EXIT_PC, 0, 0, DIAG_SEVERITY_PRINT); - visorbus_exit(); cancel_delayed_work_sync(&chipset_dev->periodic_controlvm_work); sysfs_remove_groups(&chipset_dev->acpi_device->dev.kobj, @@ -1935,8 +1933,6 @@ visorchipset_exit(struct acpi_device *acpi_device) visorchannel_destroy(chipset_dev->controlvm_channel); kfree(chipset_dev); - POSTCODE_LINUX(DRIVER_EXIT_PC, 0, 0, DIAG_SEVERITY_PRINT); - return 0; }