summaryrefslogtreecommitdiffstats
path: root/drivers/clk/mxs/clk.h
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2014-03-13 09:37:12 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2014-03-28 21:03:02 +0100
commitf4c753651406821cb65799b315df86ef22a5c05f (patch)
tree8c49c6c283bb6b9071af421950da16eb2663f30c /drivers/clk/mxs/clk.h
parentb33e5ba246860cc3fa6b79ed82d51c47f936f651 (diff)
downloadbarebox-f4c753651406821cb65799b315df86ef22a5c05f.tar.gz
barebox-f4c753651406821cb65799b315df86ef22a5c05f.tar.xz
clk: clk-gate: pass flags to initializers
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'drivers/clk/mxs/clk.h')
-rw-r--r--drivers/clk/mxs/clk.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/mxs/clk.h b/drivers/clk/mxs/clk.h
index 3db38b4913..168fa58239 100644
--- a/drivers/clk/mxs/clk.h
+++ b/drivers/clk/mxs/clk.h
@@ -34,7 +34,7 @@ static inline struct clk *mxs_clk_fixed(const char *name, int rate)
static inline struct clk *mxs_clk_gate(const char *name,
const char *parent_name, void __iomem *reg, u8 shift)
{
- return clk_gate_inverted(name, parent_name, reg, shift);
+ return clk_gate_inverted(name, parent_name, reg, shift, 0);
}
static inline struct clk *mxs_clk_mux(const char *name, void __iomem *reg,