diff options
author | Matt Porter <mporter@ti.com> | 2012-10-05 17:04:43 (GMT) |
---|---|---|
committer | Sekhar Nori <nsekhar@ti.com> | 2012-10-27 10:58:35 (GMT) |
commit | 983c42ba3465d4a80edfd318de24f8ffb2bf71ca (patch) | |
tree | 69fbbb59019fadb8f6c1a6eaf271c41faa7004d1 /arch/arm/mach-davinci/include | |
parent | c94472d4ad11c5b7d8cd527d136c198269d390fc (diff) | |
download | linux-983c42ba3465d4a80edfd318de24f8ffb2bf71ca.tar.xz |
ARM: davinci: add platform hook to fetch the SRAM pool
Adds sram_get_gen_pool() which allows platform code to get
the machine's SRAM gen_pool. The gen_pool may be passed in
platform data for driver genalloc use.
Signed-off-by: Matt Porter <mporter@ti.com>
Signed-off-by: Sekhar Nori <nsekhar@ti.com>
Diffstat (limited to 'arch/arm/mach-davinci/include')
-rw-r--r-- | arch/arm/mach-davinci/include/mach/sram.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/mach-davinci/include/mach/sram.h b/arch/arm/mach-davinci/include/mach/sram.h index 111f7cc..4e5db56 100644 --- a/arch/arm/mach-davinci/include/mach/sram.h +++ b/arch/arm/mach-davinci/include/mach/sram.h @@ -24,4 +24,7 @@ extern void *sram_alloc(size_t len, dma_addr_t *dma); extern void sram_free(void *addr, size_t len); +/* Get the struct gen_pool * for use in platform data */ +extern struct gen_pool *sram_get_gen_pool(void); + #endif /* __MACH_SRAM_H */ |