]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
staging: unisys: visorbus: remove noisy postcodes
authorDavid Kershner <david.kershner@unisys.com>
Tue, 18 Apr 2017 20:55:12 +0000 (16:55 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 28 Apr 2017 09:49:52 +0000 (11:49 +0200)
Get rid of postcodes from visorbus_main.c that are just informational.

They were not logging errors, we don't need to replace them with
anything.

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>
drivers/staging/unisys/visorbus/visorbus_main.c

index 269f525fb8b9054d9d1b9c8d0e9722d165ede896..3f26a69c9420c2af69054a8604d9fe81df7d1a82 100644 (file)
@@ -1081,17 +1081,11 @@ int
 chipset_bus_create(struct visor_device *dev)
 {
        int err;
-       u32 bus_no = dev->chipset_bus_no;
 
-       POSTCODE_LINUX(BUS_CREATE_ENTRY_PC, 0, bus_no, DIAG_SEVERITY_PRINT);
        err = create_bus_instance(dev);
-       POSTCODE_LINUX(BUS_CREATE_EXIT_PC, 0, bus_no, DIAG_SEVERITY_PRINT);
 
-       if (err < 0) {
-               POSTCODE_LINUX(BUS_CREATE_FAILURE_PC, 0, bus_no,
-                              DIAG_SEVERITY_ERR);
+       if (err < 0)
                return err;
-       }
 
        bus_create_response(dev, err);
 
@@ -1109,21 +1103,10 @@ int
 chipset_device_create(struct visor_device *dev_info)
 {
        int err;
-       u32 bus_no = dev_info->chipset_bus_no;
-       u32 dev_no = dev_info->chipset_dev_no;
-
-       POSTCODE_LINUX(DEVICE_CREATE_ENTRY_PC, dev_no, bus_no,
-                      DIAG_SEVERITY_PRINT);
 
        err = create_visor_device(dev_info);
-       if (err < 0) {
-               POSTCODE_LINUX(DEVICE_CREATE_FAILURE_PC, dev_no, bus_no,
-                              DIAG_SEVERITY_ERR);
+       if (err < 0)
                return err;
-       }
-
-       POSTCODE_LINUX(DEVICE_CREATE_SUCCESS_PC, dev_no, bus_no,
-                      DIAG_SEVERITY_PRINT);
 
        device_create_response(dev_info, err);