aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/sh
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/sh')
-rw-r--r--drivers/sh/clk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/sh/clk.c b/drivers/sh/clk.c
index 018be37ef339..c76f972db69a 100644
--- a/drivers/sh/clk.c
+++ b/drivers/sh/clk.c
@@ -81,7 +81,7 @@ struct clk_rate_round_data {
81}; 81};
82 82
83#define for_each_frequency(pos, r, freq) \ 83#define for_each_frequency(pos, r, freq) \
84 for (pos = r->min, freq = r->func(pos, r->arg); \ 84 for (pos = r->min, freq = r->func(pos, r); \
85 pos < r->max; pos++, freq = r->func(pos, r)) \ 85 pos < r->max; pos++, freq = r->func(pos, r)) \
86 if (unlikely(freq == 0)) \ 86 if (unlikely(freq == 0)) \
87 ; \ 87 ; \