Merge branch 'clk-next-unregister' into clk-next

Conflicts:
	drivers/clk/clk.c
This commit is contained in:
Mike Turquette
2013-12-31 11:35:12 -08:00
11 changed files with 235 additions and 19 deletions

View File

@@ -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;
};
/*