projects
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0906995
)
rockchip: reset: Use the rk_clr/setreg() interface
author
Simon Glass
<sjg@chromium.org>
Fri, 22 Jan 2016 02:44:02 +0000
(19:44 -0700)
committer
Simon Glass
<sjg@chromium.org>
Fri, 22 Jan 2016 03:42:35 +0000
(20:42 -0700)
Use this function in preference to the macro.
Signed-off-by: Simon Glass <sjg@chromium.org>
arch/arm/mach-rockchip/rk3288/reset_rk3288.c
patch
|
blob
|
history
diff --git
a/arch/arm/mach-rockchip/rk3288/reset_rk3288.c
b/arch/arm/mach-rockchip/rk3288/reset_rk3288.c
index
7affd11
..
bf7540a
100644
(file)
--- a/
arch/arm/mach-rockchip/rk3288/reset_rk3288.c
+++ b/
arch/arm/mach-rockchip/rk3288/reset_rk3288.c
@@
-22,11
+22,11
@@
int rk3288_reset_request(struct udevice *dev, enum reset_t type)
return PTR_ERR(cru);
switch (type) {
case RESET_WARM:
-
writel(RK_CLRBITS(0xffff), &cru->cru_mode_con
);
+
rk_clrreg(&cru->cru_mode_con, 0xffff
);
writel(0xeca8, &cru->cru_glb_srst_snd_value);
break;
case RESET_COLD:
-
writel(RK_CLRBITS(0xffff), &cru->cru_mode_con
);
+
rk_clrreg(&cru->cru_mode_con, 0xffff
);
writel(0xfdb9, &cru->cru_glb_srst_fst_value);
break;
default: