scsi: ufs: Fix ADAPT logic for HS-G5
ADAPT now is added not only for HS Gear4 mode but also higher gears. Fix the logic for higher gears. Link: https://lore.kernel.org/r/20220616053725.5681-3-stanley.chu@mediatek.com Reviewed-by: Bart Van Assche <bvanassche@acm.org> Signed-off-by: Stanley Chu <stanley.chu@mediatek.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
fc53683b45
commit
d81c4c6f71
|
@ -3804,7 +3804,7 @@ int ufshcd_dme_configure_adapt(struct ufs_hba *hba,
|
||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
if (agreed_gear != UFS_HS_G4)
|
if (agreed_gear < UFS_HS_G4)
|
||||||
adapt_val = PA_NO_ADAPT;
|
adapt_val = PA_NO_ADAPT;
|
||||||
|
|
||||||
ret = ufshcd_dme_set(hba,
|
ret = ufshcd_dme_set(hba,
|
||||||
|
|
Loading…
Reference in New Issue