You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
318 B
17 lines
318 B
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#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);
|
|
}
|
|
|
|
#ifndef CONFIG_COMMON_CLK
|
|
#define __clk_put(clk)
|
|
#define __clk_get(clk) ({ 1; })
|
|
#endif
|
|
|
|
#endif
|
|
|