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 static inline struct clk_lookup_alloc *__clkdev_alloc(size_t size)
7 {
8  return kzalloc(size, GFP_KERNEL);
9 }
10 
11 #define __clk_put(clk)
12 #define __clk_get(clk) ({ 1; })
13 
14 #endif