mirror of
https://github.com/torvalds/linux.git
synced 2024-11-25 05:32:00 +00:00
ARM: EXYNOS: fix ctrlbit for exynos5_clk_pdma1
It should be (1 << 2) for ctrlbit of exynos5_clk_pdma1. Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
This commit is contained in:
parent
fd717cd7c9
commit
28b874a8ba
@ -678,7 +678,7 @@ static struct clk exynos5_clk_pdma1 = {
|
||||
.name = "dma",
|
||||
.devname = "dma-pl330.1",
|
||||
.enable = exynos5_clk_ip_fsys_ctrl,
|
||||
.ctrlbit = (1 << 1),
|
||||
.ctrlbit = (1 << 2),
|
||||
};
|
||||
|
||||
static struct clk exynos5_clk_mdma1 = {
|
||||
|
Loading…
Reference in New Issue
Block a user