mirror of
https://github.com/torvalds/linux.git
synced 2026-06-06 13:37:36 +02:00
scsi: ufs: qcom: Fix the return value of ufs_qcom_ice_program_key()
[ Upstream commit3bf7ab4ac3] Currently, the function returns -EINVAL if algorithm other than AES-256-XTS is requested. But the correct error code is -EOPNOTSUPP. Fix it! Cc: Abel Vesa <abel.vesa@linaro.org> Fixes:56541c7c44("scsi: ufs: ufs-qcom: Switch to the new ICE API") Reviewed-by: Abel Vesa <abel.vesa@linaro.org> Signed-off-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org> Link: https://lore.kernel.org/r/20231208065902.11006-3-manivannan.sadhasivam@linaro.org Tested-by: Andrew Halaney <ahalaney@redhat.com> # sa8775p-ride Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
95fff86aa8
commit
8f67e87e16
|
|
@ -159,7 +159,7 @@ static int ufs_qcom_ice_program_key(struct ufs_hba *hba,
|
|||
cap = hba->crypto_cap_array[cfg->crypto_cap_idx];
|
||||
if (cap.algorithm_id != UFS_CRYPTO_ALG_AES_XTS ||
|
||||
cap.key_size != UFS_CRYPTO_KEY_SIZE_256)
|
||||
return -EINVAL;
|
||||
return -EOPNOTSUPP;
|
||||
|
||||
if (config_enable)
|
||||
return qcom_ice_program_key(host->ice,
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user