]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - arch/c6x/include/asm/clkdev.h
MD: when RAID journal is missing/faulty, block RESTART_ARRAY_RW
[karo-tx-linux.git] / arch / c6x / include / asm / clkdev.h
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 */