mirror of
https://github.com/torvalds/linux.git
synced 2026-06-07 05:55:44 +02:00
crypto: qat - fix error return code in adf_probe
[ Upstream commit31f81401e2] Fix to return a negative error code -EINVAL instead of 0. Fixes:0cec19c761("crypto: qat - add support for compression for 4xxx") Signed-off-by: Wang Yufen <wangyufen@huawei.com> Acked-by: Giovanni Cabiddu <giovanni.cabiddu@intel.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
c458c9d0ce
commit
10ed78c85b
|
|
@ -261,6 +261,7 @@ static int adf_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
|
|||
hw_data->accel_capabilities_mask = hw_data->get_accel_cap(accel_dev);
|
||||
if (!hw_data->accel_capabilities_mask) {
|
||||
dev_err(&pdev->dev, "Failed to get capabilities mask.\n");
|
||||
ret = -EINVAL;
|
||||
goto out_err;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user