hwmon: (occ) Print response status in first poll error message

In order to better debug problems starting up the driver, print
the response status from the OCC in the error logged when the first
poll command fails.

Signed-off-by: Eddie James <eajames@linux.ibm.com>
Acked-by: Guenter Roeck <linux@roeck-us.net>
Link: https://lore.kernel.org/r/20210209171235.20624-5-eajames@linux.ibm.com
Signed-off-by: Joel Stanley <joel@jms.id.au>
This commit is contained in:
Eddie James 2021-02-09 11:12:35 -06:00 коммит произвёл Joel Stanley
Родитель 75028ef458
Коммит 38483e8fed
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -1162,8 +1162,9 @@ int occ_setup(struct occ *occ, const char *name)
dev_info(occ->bus_dev, "host is not ready\n"); dev_info(occ->bus_dev, "host is not ready\n");
return rc; return rc;
} else if (rc < 0) { } else if (rc < 0) {
dev_err(occ->bus_dev, "failed to get OCC poll response: %d\n", dev_err(occ->bus_dev,
rc); "failed to get OCC poll response=%02x: %d\n",
occ->resp.return_status, rc);
return rc; return rc;
} }