tpm: ibmvtpm: Correct the return value in tpm_ibmvtpm_probe()
commitd0dc1a7100upstream. Currently it returns zero when CRQ response timed out, it should return an error code instead. Fixes:d8d74ea3c0("tpm: ibmvtpm: Wait for buffer to be set before proceeding") Signed-off-by: Xiu Jianfeng <xiujianfeng@huawei.com> Reviewed-by: Stefan Berger <stefanb@linux.ibm.com> Acked-by: Jarkko Sakkinen <jarkko@kernel.org> Signed-off-by: Jarkko Sakkinen <jarkko@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
5933a191ac
commit
ebbbffae71
@@ -683,6 +683,7 @@ static int tpm_ibmvtpm_probe(struct vio_dev *vio_dev,
|
|||||||
if (!wait_event_timeout(ibmvtpm->crq_queue.wq,
|
if (!wait_event_timeout(ibmvtpm->crq_queue.wq,
|
||||||
ibmvtpm->rtce_buf != NULL,
|
ibmvtpm->rtce_buf != NULL,
|
||||||
HZ)) {
|
HZ)) {
|
||||||
|
rc = -ENODEV;
|
||||||
dev_err(dev, "CRQ response timed out\n");
|
dev_err(dev, "CRQ response timed out\n");
|
||||||
goto init_irq_cleanup;
|
goto init_irq_cleanup;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user