buildscript: add option to compile using newly built toolchain
[cmplus.git] / arch / sh / include / asm / clkdev.h
blob6ba91868201ce947f625a5c982c0b4ec3a290653
1 /*
2 * Copyright (C) 2010 Paul Mundt <lethal@linux-sh.org>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
8 * Helper for the clk API to assist looking up a struct clk.
9 */
11 #ifndef __CLKDEV__H_
12 #define __CLKDEV__H_
14 #include <linux/bootmem.h>
15 #include <linux/mm.h>
16 #include <linux/slab.h>
18 #include <asm/clock.h>
20 static inline struct clk_lookup_alloc *__clkdev_alloc(size_t size)
22 if (!slab_is_available())
23 return alloc_bootmem_low_pages(size);
24 else
25 return kzalloc(size, GFP_KERNEL);
28 #define __clk_put(clk)
29 #define __clk_get(clk) ({ 1; })
31 #endif /* __CLKDEV_H__ */