]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
reset: ast2600: Fix missing reference operator
authorChia-Wei Wang <chiawei_wang@aspeedtech.com>
Tue, 20 Jul 2021 07:01:36 +0000 (15:01 +0800)
committerTom Rini <trini@konsulko.com>
Sat, 24 Jul 2021 12:57:53 +0000 (08:57 -0400)
Fix missing reference operator '&' to correctly get
HW register addresses for writel().

Signed-off-by: Chia-Wei Wang <chiawei_wang@aspeedtech.com>
drivers/reset/reset-ast2600.c

index f64adaf74e8b78432ada38848e761ef4a49ca213..195ddd18e05b4d1a8590b56f7df27918ac69252e 100644 (file)
@@ -41,9 +41,9 @@ static int ast2600_reset_assert(struct reset_ctl *reset_ctl)
        debug("%s: reset_ctl->id: %lu\n", __func__, reset_ctl->id);
 
        if (reset_ctl->id < 32)
-               writel(BIT(reset_ctl->id), scu->modrst_ctrl1);
+               writel(BIT(reset_ctl->id), &scu->modrst_ctrl1);
        else
-               writel(BIT(reset_ctl->id - 32), scu->modrst_ctrl2);
+               writel(BIT(reset_ctl->id - 32), &scu->modrst_ctrl2);
 
        return 0;
 }
@@ -56,9 +56,9 @@ static int ast2600_reset_deassert(struct reset_ctl *reset_ctl)
        debug("%s: reset_ctl->id: %lu\n", __func__, reset_ctl->id);
 
        if (reset_ctl->id < 32)
-               writel(BIT(reset_ctl->id), scu->modrst_clr1);
+               writel(BIT(reset_ctl->id), &scu->modrst_clr1);
        else
-               writel(BIT(reset_ctl->id - 32), scu->modrst_clr2);
+               writel(BIT(reset_ctl->id - 32), &scu->modrst_clr2);
 
        return 0;
 }