diff options
| author | David Kershner <david.kershner@unisys.com> | 2017-04-18 23:55:20 +0300 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-04-28 12:51:20 +0300 |
| commit | 03662df8114fa74cbd4e993c7e0ca1360db603a3 (patch) | |
| tree | d0b1fde793162e066baba8250677dc7d819f2cc1 | |
| parent | a8c26e4bc219ded38cc59a9bbfcfee6c2abb666f (diff) | |
| download | linux-03662df8114fa74cbd4e993c7e0ca1360db603a3.tar.xz | |
staging: unisys: visorbus: get rid of POSTCODES in my_device_changestate
Replace POSTCODEs with dev_err in the function my_device_changestate.
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>
| -rw-r--r-- | drivers/staging/unisys/visorbus/visorchipset.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/staging/unisys/visorbus/visorchipset.c b/drivers/staging/unisys/visorbus/visorchipset.c index 8b1cca863311..6fc89804a88e 100644 --- a/drivers/staging/unisys/visorbus/visorchipset.c +++ b/drivers/staging/unisys/visorbus/visorchipset.c @@ -849,14 +849,10 @@ my_device_changestate(struct controlvm_message *inmsg) dev_info = visorbus_get_device_by_id(bus_no, dev_no, NULL); if (!dev_info) { - POSTCODE_LINUX(DEVICE_CHANGESTATE_FAILURE_PC, dev_no, bus_no, - DIAG_SEVERITY_ERR); err = -ENODEV; goto err_respond; } if (dev_info->state.created == 0) { - POSTCODE_LINUX(DEVICE_CHANGESTATE_FAILURE_PC, dev_no, bus_no, - DIAG_SEVERITY_ERR); err = -EINVAL; goto err_respond; } @@ -895,6 +891,7 @@ my_device_changestate(struct controlvm_message *inmsg) return 0; err_respond: + dev_err(&chipset_dev->acpi_device->dev, "failed: %d\n", err); if (inmsg->hdr.flags.response_expected == 1) controlvm_responder(inmsg->hdr.id, &inmsg->hdr, err); return err; |
