mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-25 21:54:06 +08:00
15 lines
246 B
C
15 lines
246 B
C
|
#ifndef __ASM_CLKDEV__H_
|
||
|
#define __ASM_CLKDEV__H_
|
||
|
|
||
|
#include <linux/slab.h>
|
||
|
|
||
|
static inline struct clk_lookup_alloc *__clkdev_alloc(size_t size)
|
||
|
{
|
||
|
return kzalloc(size, GFP_KERNEL);
|
||
|
}
|
||
|
|
||
|
#define __clk_put(clk)
|
||
|
#define __clk_get(clk) ({ 1; })
|
||
|
|
||
|
#endif
|