diff options
author | Matt Porter <mporter@ti.com> | 2012-10-05 21:04:40 +0400 |
---|---|---|
committer | Sekhar Nori <nsekhar@ti.com> | 2012-10-27 14:58:32 +0400 |
commit | 2eb2478d471e45e1d0c8bb3defbf82bf7204e13d (patch) | |
tree | 5158b5cb3958b9f14cf89f41939da0d52242c50f /include/linux/platform_data/uio_pruss.h | |
parent | 76d57ce6ef6060f611c14675249b7300a3c96368 (diff) | |
download | linux-2eb2478d471e45e1d0c8bb3defbf82bf7204e13d.tar.xz |
uio: uio_pruss: replace private SRAM API with genalloc
Remove the use of the private DaVinci SRAM API in favor
of genalloc. The pool to be used is provided by platform
data.
Signed-off-by: Matt Porter <mporter@ti.com>
Signed-off-by: "Hans J. Koch" <hjk@hansjkoch.de>
Signed-off-by: Sekhar Nori <nsekhar@ti.com>
Diffstat (limited to 'include/linux/platform_data/uio_pruss.h')
-rw-r--r-- | include/linux/platform_data/uio_pruss.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/platform_data/uio_pruss.h b/include/linux/platform_data/uio_pruss.h index f39140aabc6f..3d47d219827f 100644 --- a/include/linux/platform_data/uio_pruss.h +++ b/include/linux/platform_data/uio_pruss.h @@ -20,6 +20,7 @@ /* To configure the PRUSS INTC base offset for UIO driver */ struct uio_pruss_pdata { - u32 pintc_base; + u32 pintc_base; + struct gen_pool *sram_pool; }; #endif /* _UIO_PRUSS_H_ */ |