mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-02 22:56:42 +07:00
969003152a
Add clock support for bf60x. Signed-off-by: Steven Miao <realmz6@gmail.com> Signed-off-by: Bob Liu <lliubbo@gmail.com>
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
|