summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2014-03-13 10:02:23 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2014-03-28 21:03:14 +0100
commit3e9a71f78de4107d6b991fe6e83bdc7749fd692b (patch)
tree5086f1027f25fb82b0559971dd30e5222017bc6e /include
parent82163afcf0feb35f88a08362b27ed3e18c5072d1 (diff)
downloadbarebox-3e9a71f78de4107d6b991fe6e83bdc7749fd692b.tar.gz
barebox-3e9a71f78de4107d6b991fe6e83bdc7749fd692b.tar.xz
clk: clk-divider: pass flags to initializers
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'include')
-rw-r--r--include/linux/clk.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/linux/clk.h b/include/linux/clk.h
index e65a62aa94..7e5010aded 100644
--- a/include/linux/clk.h
+++ b/include/linux/clk.h
@@ -242,12 +242,12 @@ struct clk_divider {
extern struct clk_ops clk_divider_ops;
struct clk *clk_divider(const char *name, const char *parent,
- void __iomem *reg, u8 shift, u8 width);
+ void __iomem *reg, u8 shift, u8 width, unsigned flags);
struct clk *clk_divider_one_based(const char *name, const char *parent,
- void __iomem *reg, u8 shift, u8 width);
+ void __iomem *reg, u8 shift, u8 width, unsigned flags);
struct clk *clk_divider_table(const char *name,
const char *parent, void __iomem *reg, u8 shift, u8 width,
- const struct clk_div_table *table);
+ const struct clk_div_table *table, unsigned flags);
struct clk *clk_fixed_factor(const char *name,
const char *parent, unsigned int mult, unsigned int div,
unsigned flags);