ql_hw.c: fixed error code INJCT_HEARTBEAT_FAILURE

ql_os.c: removed unnecessary debug printf
ql_ver.h: updated version number
MFC after:5 days
This commit is contained in:
David C Somayajulu 2015-10-20 17:27:11 +00:00
parent d47fd83325
commit 467dcb5a1f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=289635
3 changed files with 3 additions and 4 deletions

View File

@ -387,6 +387,7 @@ ql_hw_add_sysctls(qla_host_t *ha)
"Minidump Utility can start minidump process");
#ifdef QL_DBG
ha->err_inject = 0;
SYSCTL_ADD_UINT(device_get_sysctl_ctx(dev),
SYSCTL_CHILDREN(device_get_sysctl_tree(dev)),
OID_AUTO, "err_inject",
@ -3057,7 +3058,7 @@ ql_hw_check_health(qla_host_t *ha)
val = READ_REG32(ha, Q8_FIRMWARE_HEARTBEAT);
if ((val != ha->hw.hbeat_value) &&
(!(QL_ERR_INJECT(ha, INJCT_TEMPERATURE_FAILURE)))) {
(!(QL_ERR_INJECT(ha, INJCT_HEARTBEAT_FAILURE)))) {
ha->hw.hbeat_value = val;
return 0;
}

View File

@ -289,8 +289,6 @@ qla_pci_attach(device_t dev)
int i;
uint32_t num_rcvq = 0;
QL_DPRINT2(ha, (dev, "%s: enter\n", __func__));
if ((ha = device_get_softc(dev)) == NULL) {
device_printf(dev, "cannot get softc\n");
return (ENOMEM);

View File

@ -36,6 +36,6 @@
#define QLA_VERSION_MAJOR 3
#define QLA_VERSION_MINOR 10
#define QLA_VERSION_BUILD 24
#define QLA_VERSION_BUILD 25
#endif /* #ifndef _QL_VER_H_ */