diff options
author | Peter Ujfalusi <peter.ujfalusi@ti.com> | 2016-09-21 15:41:31 +0300 |
---|---|---|
committer | Vinod Koul <vinod.koul@intel.com> | 2016-09-28 08:53:15 +0530 |
commit | e7282b66a3bc8650cb9f5acfe63c819ba09015ca (patch) | |
tree | d6c2ef09f8ec0642a152d67d5b02b77600acf2cd /drivers/dma | |
parent | a8db115e476ee31fc3e892522038da50dd3a66cc (diff) |
dmaengine: ti-dma-crossbar: Correct type for of_find_property() third parameter
The correct type is int and not for the third parameter of
of_find_property().
Fixes compilation for 64bit architectures (x86_64, aarch64).
Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Diffstat (limited to 'drivers/dma')
-rw-r--r-- | drivers/dma/ti-dma-crossbar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/ti-dma-crossbar.c b/drivers/dma/ti-dma-crossbar.c index 5ae294b256a7..e4f3bd1ae264 100644 --- a/drivers/dma/ti-dma-crossbar.c +++ b/drivers/dma/ti-dma-crossbar.c @@ -311,7 +311,7 @@ static int ti_dra7_xbar_probe(struct platform_device *pdev) struct property *prop; struct resource *res; u32 safe_val; - size_t sz; + int sz; void __iomem *iomem; int i, ret; |