Merge branch 'clk-next-unregister' into clk-next
Conflicts: drivers/clk/clk.c
This commit is contained in:
@@ -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;
|
||||
};
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user