repo.or.cz
/
linux
/
fpc-iii.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
mfd: wm8350-i2c: Make sure the i2c regmap functions are compiled
[linux/fpc-iii.git]
/
arch
/
blackfin
/
include
/
asm
/
clkdev.h
blob
9053beda8c5065d0c4fe4a7c148baea406f623ba
1
#ifndef __ASM_CLKDEV__H_
2
#define __ASM_CLKDEV__H_
3
4
#include <linux/slab.h>
5
6
static
inline
struct
clk_lookup_alloc
*
__clkdev_alloc
(
size_t
size
)
7
{
8
return
kzalloc
(
size
,
GFP_KERNEL
);
9
}
10
11
#define __clk_put(clk)
12
#define __clk_get(clk) ({ 1; })
13
14
#endif