Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
clkdev.h
Go to the documentation of this file.
1 #ifndef _ASM_CLKDEV_H
2 #define _ASM_CLKDEV_H
3 
4 #include <linux/slab.h>
5 
6 struct clk;
7 
8 static inline int __clk_get(struct clk *clk)
9 {
10  return 1;
11 }
12 
13 static inline void __clk_put(struct clk *clk)
14 {
15 }
16 
17 static inline struct clk_lookup_alloc *__clkdev_alloc(size_t size)
18 {
19  return kzalloc(size, GFP_KERNEL);
20 }
21 
22 #endif /* _ASM_CLKDEV_H */