diff options
author | Michal Simek <monstr@monstr.eu> | 2010-01-14 17:03:49 +0100 |
---|---|---|
committer | Michal Simek <monstr@monstr.eu> | 2010-03-11 13:59:02 +0100 |
commit | a84642a339235020e6dccc022de27055f1fa9340 (patch) | |
tree | a37bb8fa58d2e484ac73d0bb89275cecef9fd3d9 /arch/microblaze/include/asm | |
parent | 2549edd353196d7de9c18e08146d7a8836f97235 (diff) | |
download | blackbird-op-linux-a84642a339235020e6dccc022de27055f1fa9340.tar.gz blackbird-op-linux-a84642a339235020e6dccc022de27055f1fa9340.zip |
microblaze: Add {z,}alloc_maybe_bootmem functions
I will need {z,}alloc_maybe_bootmem functions for pci patches
Signed-off-by: Michal Simek <monstr@monstr.eu>
Diffstat (limited to 'arch/microblaze/include/asm')
-rw-r--r-- | arch/microblaze/include/asm/system.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/microblaze/include/asm/system.h b/arch/microblaze/include/asm/system.h index 157970688b2a..59efb3fef957 100644 --- a/arch/microblaze/include/asm/system.h +++ b/arch/microblaze/include/asm/system.h @@ -87,6 +87,9 @@ void free_initmem(void); extern char *klimit; extern void ret_from_fork(void); +extern void *alloc_maybe_bootmem(size_t size, gfp_t mask); +extern void *zalloc_maybe_bootmem(size_t size, gfp_t mask); + #ifdef CONFIG_DEBUG_FS extern struct dentry *of_debugfs_root; #endif |