diff mbox series

clk: sunxi: A31: Fix wrong AHB gate number

Message ID 20190123005911.27913-1-andre.przywara@arm.com (mailing list archive)
State Awaiting Upstream, archived
Headers show
Series clk: sunxi: A31: Fix wrong AHB gate number | expand

Commit Message

Andre Przywara Jan. 23, 2019, 12:59 a.m. UTC
According to the manual the gate clock for MMC3 is at bit 11, and NAND1
is controlled by bit 12.

Fix the gate bit definitions in the clock driver.

Signed-off-by: Andre Przywara <andre.przywara@arm.com>
---
 drivers/clk/sunxi-ng/ccu-sun6i-a31.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Maxime Ripard Jan. 23, 2019, 10:32 a.m. UTC | #1
On Wed, Jan 23, 2019 at 12:59:11AM +0000, Andre Przywara wrote:
> According to the manual the gate clock for MMC3 is at bit 11, and NAND1
> is controlled by bit 12.
> 
> Fix the gate bit definitions in the clock driver.
> 
> Signed-off-by: Andre Przywara <andre.przywara@arm.com>

Added the fixes tag and applied, thanks!
Maxime
diff mbox series

Patch

diff --git a/drivers/clk/sunxi-ng/ccu-sun6i-a31.c b/drivers/clk/sunxi-ng/ccu-sun6i-a31.c
index 3b97f60540ad..609970c0b666 100644
--- a/drivers/clk/sunxi-ng/ccu-sun6i-a31.c
+++ b/drivers/clk/sunxi-ng/ccu-sun6i-a31.c
@@ -264,9 +264,9 @@  static SUNXI_CCU_GATE(ahb1_mmc1_clk,	"ahb1-mmc1",	"ahb1",
 static SUNXI_CCU_GATE(ahb1_mmc2_clk,	"ahb1-mmc2",	"ahb1",
 		      0x060, BIT(10), 0);
 static SUNXI_CCU_GATE(ahb1_mmc3_clk,	"ahb1-mmc3",	"ahb1",
-		      0x060, BIT(12), 0);
+		      0x060, BIT(11), 0);
 static SUNXI_CCU_GATE(ahb1_nand1_clk,	"ahb1-nand1",	"ahb1",
-		      0x060, BIT(13), 0);
+		      0x060, BIT(12), 0);
 static SUNXI_CCU_GATE(ahb1_nand0_clk,	"ahb1-nand0",	"ahb1",
 		      0x060, BIT(13), 0);
 static SUNXI_CCU_GATE(ahb1_sdram_clk,	"ahb1-sdram",	"ahb1",