Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1484784
| From | Peter Ujfalusi <peter.ujfalusi@ti.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 7/9] dmaengine: ti-dma-crossbar: Correct type for of_find_property() third parameter |
| Date | 2016-09-16 10:40 +0200 |
| Message-ID | <shWQG-2fE-25@gated-at.bofh.it> (permalink) |
| References | <shWQG-2fE-7@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
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> --- drivers/dma/ti-dma-crossbar.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.10.0
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
[PATCH 7/9] dmaengine: ti-dma-crossbar: Correct type for of_find_property() third parameter Peter Ujfalusi <peter.ujfalusi@ti.com> - 2016-09-16 10:40 +0200
csiph-web