aboutsummaryrefslogtreecommitdiff
path: root/include/linux/clk-private.h
diff options
context:
space:
mode:
authorMike Turquette <mturquette@linaro.org>2013-12-31 11:35:12 -0800
committerMike Turquette <mturquette@linaro.org>2013-12-31 11:35:12 -0800
commitdbdf6ff51e3ce13ade5834b0d7d451522fcdb478 (patch)
treeb5594d70cf4d484101891adbfc01798c14827fa8 /include/linux/clk-private.h
parent391e3903e63781debc52a0de73f2e922dcc3f602 (diff)
parent9ffe29d780dd5f9c662f2c32f8dc64435da726bf (diff)
Merge branch 'clk-next-unregister' into clk-next
Conflicts: drivers/clk/clk.c
Diffstat (limited to 'include/linux/clk-private.h')
-rw-r--r--include/linux/clk-private.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/clk-private.h b/include/linux/clk-private.h
index 5fb086b06c83..efbf70b9fd84 100644
--- a/include/linux/clk-private.h
+++ b/include/linux/clk-private.h
@@ -12,6 +12,7 @@
#define __LINUX_CLK_PRIVATE_H
#include <linux/clk-provider.h>
+#include <linux/kref.h>
#include <linux/list.h>
/*
@@ -25,10 +26,13 @@
#ifdef CONFIG_COMMON_CLK
+struct module;
+
struct clk {
const char *name;
const struct clk_ops *ops;
struct clk_hw *hw;
+ struct module *owner;
struct clk *parent;
const char **parent_names;
struct clk **parents;
@@ -48,6 +52,7 @@ struct clk {
#ifdef CONFIG_DEBUG_FS
struct dentry *dentry;
#endif
+ struct kref ref;
};
/*