summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKuninori Morimoto <kuninori.morimoto.gx@renesas.com>2013-04-12 07:41:07 (GMT)
committerSimon Horman <horms+renesas@verge.net.au>2013-06-07 05:24:42 (GMT)
commitb6825a02fd3c43f2bd2e126fdbe9d83d6ca44f4e (patch)
tree6004d7b6d30101cfd5783d91fc5d301927073cf2
parentbdd5d28461f8f94b4eb719d229b9ed66ca28636f (diff)
downloadlinux-fsl-qoriq-b6825a02fd3c43f2bd2e126fdbe9d83d6ca44f4e.tar.xz
ARM: shmobile: use do{ }while() on SH_CLK_SET_RATIO()
SH_CLK_SET_RATIO() will be trouble without this patch Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
-rw-r--r--arch/arm/mach-shmobile/include/mach/clock.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-shmobile/include/mach/clock.h b/arch/arm/mach-shmobile/include/mach/clock.h
index 8902044..03e5607 100644
--- a/arch/arm/mach-shmobile/include/mach/clock.h
+++ b/arch/arm/mach-shmobile/include/mach/clock.h
@@ -31,9 +31,9 @@ static SH_FIXED_RATIO_CLKg(name, p, r)
SH_FIXED_RATIO_CLK(name, p, name)
#define SH_CLK_SET_RATIO(p, m, d) \
-{ \
+do { \
(p)->mul = m; \
(p)->div = d; \
-}
+} while (0)
#endif