diff options
author | Cristian Stoica <cristian.stoica@freescale.com> | 2014-10-09 16:00:27 +0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-11-07 21:09:07 +0300 |
commit | e0f1147cc9512d3610d2f2a0f069690661444703 (patch) | |
tree | 5c4d901cb1ff60ca8658e2846c0d35bf5b9ac089 /include/linux/uio_driver.h | |
parent | 5559b7bc42f1ff85759246e40ef73abf3171d8d9 (diff) | |
download | linux-e0f1147cc9512d3610d2f2a0f069690661444703.tar.xz |
uio: support memory sizes larger than 32 bits
This is a completion to 27a90700a4275c5178b883b65927affdafa5185c
The size field is also increased to allow values larger than 32 bits
on platforms that have more than 32 bit physical addresses.
Signed-off-by: Cristian Stoica <cristian.stoica@freescale.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include/linux/uio_driver.h')
-rw-r--r-- | include/linux/uio_driver.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/uio_driver.h b/include/linux/uio_driver.h index baa81718d985..32c0e83d6239 100644 --- a/include/linux/uio_driver.h +++ b/include/linux/uio_driver.h @@ -35,7 +35,7 @@ struct uio_map; struct uio_mem { const char *name; phys_addr_t addr; - unsigned long size; + resource_size_t size; int memtype; void __iomem *internal_addr; struct uio_map *map; |