Commit e926d753 authored by Weili Qian's avatar Weili Qian Committed by Herbert Xu

crypto: hisilicon/qm - modify the return type of function

The returns of 'qm_get_hw_error_status' and 'qm_get_dev_err_status'
are values from the hardware registers, which should not be defined
as 'int', so update as 'u32'.
Signed-off-by: default avatarWeili Qian <qianweili@huawei.com>
Reviewed-by: default avatarZhou Wang <wangzhou1@hisilicon.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent 1b5644f2
...@@ -3291,7 +3291,7 @@ pci_ers_result_t hisi_qm_dev_err_detected(struct pci_dev *pdev, ...@@ -3291,7 +3291,7 @@ pci_ers_result_t hisi_qm_dev_err_detected(struct pci_dev *pdev,
} }
EXPORT_SYMBOL_GPL(hisi_qm_dev_err_detected); EXPORT_SYMBOL_GPL(hisi_qm_dev_err_detected);
static int qm_get_hw_error_status(struct hisi_qm *qm) static u32 qm_get_hw_error_status(struct hisi_qm *qm)
{ {
return readl(qm->io_base + QM_ABNORMAL_INT_STATUS); return readl(qm->io_base + QM_ABNORMAL_INT_STATUS);
} }
...@@ -3590,7 +3590,7 @@ static int qm_vf_reset_done(struct hisi_qm *qm) ...@@ -3590,7 +3590,7 @@ static int qm_vf_reset_done(struct hisi_qm *qm)
return ret; return ret;
} }
static int qm_get_dev_err_status(struct hisi_qm *qm) static u32 qm_get_dev_err_status(struct hisi_qm *qm)
{ {
return qm->err_ini->get_dev_hw_err_status(qm); return qm->err_ini->get_dev_hw_err_status(qm);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment