diff options
author | David Kershner <david.kershner@unisys.com> | 2017-04-18 16:55:14 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-04-28 11:49:52 +0200 |
commit | 81aaca2f5de6f4b72a15e2fbb19fa7e4fff329e4 (patch) | |
tree | 26df61aad4ec333a173f12c0457226624e18e406 /drivers/staging | |
parent | 5e259c4b0667edb1c3d24d9f698465e496d2c569 (diff) | |
download | linux-81aaca2f5de6f4b72a15e2fbb19fa7e4fff329e4.tar.bz2 |
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 <david.kershner@unisys.com>
Reviewed-by: Tim Sell <timothy.sell@unisys.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging')
-rw-r--r-- | drivers/staging/unisys/visorbus/visorchipset.c | 4 |
1 files changed, 0 insertions, 4 deletions
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; } |