LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* [PATCH] dmaengine: of: bail out early if "dmas" property is not present
@ 2015-01-14 14:16 Wolfram Sang
2015-01-14 14:20 ` Geert Uytterhoeven
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Wolfram Sang @ 2015-01-14 14:16 UTC (permalink / raw)
To: dmaengine
Cc: linux-sh, Wolfram Sang, Magnus Damm, Simon Horman,
Laurent Pinchart, Geert Uytterhoeven, Philipp Zabel, Vinod Koul,
linux-kernel
From: Wolfram Sang <wsa+renesas@sang-engineering.com>
And don't print an error: not configured is not an error.
Reported-by: Philipp Zabel <p.zabel@pengutronix.de>
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
---
In response to Philipp's patch silencing the warning in the driver:
http://patchwork.ozlabs.org/patch/425696/
I think this should be handled in the core.
drivers/dma/of-dma.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/drivers/dma/of-dma.c b/drivers/dma/of-dma.c
index d5fbeaa1e7ba..ca31f1b45366 100644
--- a/drivers/dma/of-dma.c
+++ b/drivers/dma/of-dma.c
@@ -159,6 +159,10 @@ struct dma_chan *of_dma_request_slave_channel(struct device_node *np,
return ERR_PTR(-ENODEV);
}
+ /* Silently fail if there is not even the "dmas" property */
+ if (!of_find_property(np, "dmas", NULL))
+ return ERR_PTR(-ENODEV);
+
count = of_property_count_strings(np, "dma-names");
if (count < 0) {
pr_err("%s: dma-names property of node '%s' missing or empty\n",
--
2.1.3
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] dmaengine: of: bail out early if "dmas" property is not present
2015-01-14 14:16 [PATCH] dmaengine: of: bail out early if "dmas" property is not present Wolfram Sang
@ 2015-01-14 14:20 ` Geert Uytterhoeven
2015-01-15 23:30 ` Laurent Pinchart
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Geert Uytterhoeven @ 2015-01-14 14:20 UTC (permalink / raw)
To: Wolfram Sang
Cc: dmaengine, Linux-sh list, Magnus Damm, Simon Horman,
Laurent Pinchart, Philipp Zabel, Vinod Koul, linux-kernel
On Wed, Jan 14, 2015 at 3:16 PM, Wolfram Sang <wsa@the-dreams.de> wrote:
> From: Wolfram Sang <wsa+renesas@sang-engineering.com>
>
> And don't print an error: not configured is not an error.
>
> Reported-by: Philipp Zabel <p.zabel@pengutronix.de>
> Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Acked-by: Geert Uytterhoeven <geert+renesas@glider.be>
Gr{oetje,eeting}s,
Geert
--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org
In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
-- Linus Torvalds
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] dmaengine: of: bail out early if "dmas" property is not present
2015-01-14 14:16 [PATCH] dmaengine: of: bail out early if "dmas" property is not present Wolfram Sang
2015-01-14 14:20 ` Geert Uytterhoeven
@ 2015-01-15 23:30 ` Laurent Pinchart
2015-01-22 14:48 ` Philipp Zabel
2015-01-26 6:45 ` Vinod Koul
3 siblings, 0 replies; 5+ messages in thread
From: Laurent Pinchart @ 2015-01-15 23:30 UTC (permalink / raw)
To: Wolfram Sang
Cc: dmaengine, linux-sh, Magnus Damm, Simon Horman,
Geert Uytterhoeven, Philipp Zabel, Vinod Koul, linux-kernel
Hi Wolfram,
Thank you for the patch.
On Wednesday 14 January 2015 15:16:28 Wolfram Sang wrote:
> From: Wolfram Sang <wsa+renesas@sang-engineering.com>
>
> And don't print an error: not configured is not an error.
>
> Reported-by: Philipp Zabel <p.zabel@pengutronix.de>
> Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
This looks good to me.
Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
> ---
>
> In response to Philipp's patch silencing the warning in the driver:
> http://patchwork.ozlabs.org/patch/425696/
>
> I think this should be handled in the core.
>
> drivers/dma/of-dma.c | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/drivers/dma/of-dma.c b/drivers/dma/of-dma.c
> index d5fbeaa1e7ba..ca31f1b45366 100644
> --- a/drivers/dma/of-dma.c
> +++ b/drivers/dma/of-dma.c
> @@ -159,6 +159,10 @@ struct dma_chan *of_dma_request_slave_channel(struct
> device_node *np, return ERR_PTR(-ENODEV);
> }
>
> + /* Silently fail if there is not even the "dmas" property */
> + if (!of_find_property(np, "dmas", NULL))
> + return ERR_PTR(-ENODEV);
> +
> count = of_property_count_strings(np, "dma-names");
> if (count < 0) {
> pr_err("%s: dma-names property of node '%s' missing or empty\n",
--
Regards,
Laurent Pinchart
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] dmaengine: of: bail out early if "dmas" property is not present
2015-01-14 14:16 [PATCH] dmaengine: of: bail out early if "dmas" property is not present Wolfram Sang
2015-01-14 14:20 ` Geert Uytterhoeven
2015-01-15 23:30 ` Laurent Pinchart
@ 2015-01-22 14:48 ` Philipp Zabel
2015-01-26 6:45 ` Vinod Koul
3 siblings, 0 replies; 5+ messages in thread
From: Philipp Zabel @ 2015-01-22 14:48 UTC (permalink / raw)
To: Wolfram Sang
Cc: dmaengine, linux-sh, Magnus Damm, Simon Horman, Laurent Pinchart,
Geert Uytterhoeven, Vinod Koul, linux-kernel
Am Mittwoch, den 14.01.2015, 15:16 +0100 schrieb Wolfram Sang:
> From: Wolfram Sang <wsa+renesas@sang-engineering.com>
>
> And don't print an error: not configured is not an error.
>
> Reported-by: Philipp Zabel <p.zabel@pengutronix.de>
> Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Acked-by: Philipp Zabel <p.zabel@pengutronix.de>
thanks
Philipp
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] dmaengine: of: bail out early if "dmas" property is not present
2015-01-14 14:16 [PATCH] dmaengine: of: bail out early if "dmas" property is not present Wolfram Sang
` (2 preceding siblings ...)
2015-01-22 14:48 ` Philipp Zabel
@ 2015-01-26 6:45 ` Vinod Koul
3 siblings, 0 replies; 5+ messages in thread
From: Vinod Koul @ 2015-01-26 6:45 UTC (permalink / raw)
To: Wolfram Sang
Cc: dmaengine, linux-sh, Magnus Damm, Simon Horman, Laurent Pinchart,
Geert Uytterhoeven, Philipp Zabel, linux-kernel
On Wed, Jan 14, 2015 at 03:16:28PM +0100, Wolfram Sang wrote:
> From: Wolfram Sang <wsa+renesas@sang-engineering.com>
>
> And don't print an error: not configured is not an error.
>
Applied, thanks
This must be record for Acks per lines :)
--
~Vinod
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2015-01-26 6:47 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-01-14 14:16 [PATCH] dmaengine: of: bail out early if "dmas" property is not present Wolfram Sang
2015-01-14 14:20 ` Geert Uytterhoeven
2015-01-15 23:30 ` Laurent Pinchart
2015-01-22 14:48 ` Philipp Zabel
2015-01-26 6:45 ` Vinod Koul
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).