]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
ufs: amd-versal2: Fix indent
authorMarek Vasut <marek.vasut+renesas@mailbox.org>
Tue, 28 Oct 2025 14:22:24 +0000 (15:22 +0100)
committerNeil Armstrong <neil.armstrong@linaro.org>
Tue, 28 Oct 2025 16:32:48 +0000 (17:32 +0100)
Fix indent, use tabs. No functional change.

Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>
Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
Link: https://patch.msgid.link/20251028142335.18125-4-marek.vasut+renesas@mailbox.org
Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
drivers/ufs/ufs-amd-versal2.c

index 896dda2de4e7ae3c9d7f27ddbdcd156fde7937d5..89931921ff9e8c9e9a4421a03bc16d031354d75f 100644 (file)
@@ -330,7 +330,7 @@ static int ufs_versal2_init(struct ufs_hba *hba)
                return PTR_ERR(priv->rstphy);
        }
 
-       ret =  zynqmp_pm_ufs_cal_reg(&cal);
+       ret = zynqmp_pm_ufs_cal_reg(&cal);
        if (ret)
                return ret;
 
@@ -567,9 +567,9 @@ static const struct udevice_id ufs_versal2_ids[] = {
 };
 
 U_BOOT_DRIVER(ufs_versal2_pltfm) = {
-       .name           = "ufs-versal2-pltfm",
-       .id             = UCLASS_UFS,
-       .of_match       = ufs_versal2_ids,
-       .probe          = ufs_versal2_probe,
-       .bind           = ufs_versal2_bind,
+       .name           = "ufs-versal2-pltfm",
+       .id             = UCLASS_UFS,
+       .of_match       = ufs_versal2_ids,
+       .probe          = ufs_versal2_probe,
+       .bind           = ufs_versal2_bind,
 };