diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2015-07-13 13:17:06 +0900 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-07-22 07:30:39 -0600 |
commit | ebc3328cccc2bc7968fbd179e8e30fa1282b391a (patch) | |
tree | c8879120903b9dc30fdf447a51f739c9fac3ff34 /lib | |
parent | 3721eaf28e5e074bebf8191e37dacbd75ffc459d (diff) | |
download | u-boot-ebc3328cccc2bc7968fbd179e8e30fa1282b391a.zip u-boot-ebc3328cccc2bc7968fbd179e8e30fa1282b391a.tar.gz u-boot-ebc3328cccc2bc7968fbd179e8e30fa1282b391a.tar.bz2 |
linux_compat: move vzalloc() to header file as an inline function
The vzalloc(size) is equivalent to kzalloc(size, 0). Move it to
include/linux/compat.h as an inline function in order to avoid the
function call overhead.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Reviewed-by: Heiko Schocher <hs@denx.de>
Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/linux_compat.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/linux_compat.c b/lib/linux_compat.c index a3d4675..8c7a7b5 100644 --- a/lib/linux_compat.c +++ b/lib/linux_compat.c @@ -26,11 +26,6 @@ void *kzalloc(size_t size, int flags) return ptr; } -void *vzalloc(unsigned long size) -{ - return kzalloc(size, 0); -} - struct kmem_cache *get_mem(int element_sz) { struct kmem_cache *ret; |