ufs: Do not disable clocks in suspend

Do not disable clocks in suepend.

Bug 4732470

Change-Id: Iabf05c1d80e3339c10f7824edcc333cef065bc33
This commit is contained in:
Mallikarjun Kasoju
2024-07-12 22:39:29 +00:00
committed by Jon Hunter
parent 14d246d8a3
commit 0b489f8588

View File

@@ -1372,6 +1372,11 @@ static int ufs_tegra_suspend(struct ufs_hba *hba, enum ufs_pm_op pm_op)
ufshcd_set_link_off(hba);
}
/* TODO: Check why disabling clocks causing crash */
if (ufs_tegra->soc->chip_id == TEGRA264) {
goto end;
}
/* Clocks are not present on VDK */
if (tegra_sku_info.platform == TEGRA_PLATFORM_VDK)
goto end;