All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] dma: rcar-audmapp: add NULL terminater on audmapp_of_match
       [not found] ` <alpine.DEB.2.02.1407082242560.2069@localhost6.localdomain6>
@ 2014-07-09  0:59     ` Kuninori Morimoto
  0 siblings, 0 replies; 4+ messages in thread
From: Kuninori Morimoto @ 2014-07-09  0:59 UTC (permalink / raw)
  To: Linux-SH, Julia Lawall, Vinod Koul
  Cc: kbuild test robot, Simon Horman, Linux-Kernel, sboyd, kbuild

From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>

This patch solve this issue

drivers/dma/sh/rcar-audmapp.c:357:41-42: audmapp_of_match is not NULL terminated at line 357

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
---
 drivers/dma/sh/rcar-audmapp.c |    1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/dma/sh/rcar-audmapp.c b/drivers/dma/sh/rcar-audmapp.c
index 0774c36..dabbf0a 100644
--- a/drivers/dma/sh/rcar-audmapp.c
+++ b/drivers/dma/sh/rcar-audmapp.c
@@ -355,6 +355,7 @@ static int audmapp_remove(struct platform_device *pdev)
 
 static const struct of_device_id audmapp_of_match[] = {
 	{ .compatible = "renesas,rcar-audmapp", },
+	{},
 };
 
 static struct platform_driver audmapp_driver = {
-- 
1.7.9.5


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH] dma: rcar-audmapp: add NULL terminater on audmapp_of_match
@ 2014-07-09  0:59     ` Kuninori Morimoto
  0 siblings, 0 replies; 4+ messages in thread
From: Kuninori Morimoto @ 2014-07-09  0:59 UTC (permalink / raw)
  To: Linux-SH, Julia Lawall, Vinod Koul
  Cc: kbuild test robot, Simon Horman, Linux-Kernel, sboyd, kbuild

From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>

This patch solve this issue

drivers/dma/sh/rcar-audmapp.c:357:41-42: audmapp_of_match is not NULL terminated at line 357

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
---
 drivers/dma/sh/rcar-audmapp.c |    1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/dma/sh/rcar-audmapp.c b/drivers/dma/sh/rcar-audmapp.c
index 0774c36..dabbf0a 100644
--- a/drivers/dma/sh/rcar-audmapp.c
+++ b/drivers/dma/sh/rcar-audmapp.c
@@ -355,6 +355,7 @@ static int audmapp_remove(struct platform_device *pdev)
 
 static const struct of_device_id audmapp_of_match[] = {
 	{ .compatible = "renesas,rcar-audmapp", },
+	{},
 };
 
 static struct platform_driver audmapp_driver = {
-- 
1.7.9.5


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] dma: rcar-audmapp: add NULL terminater on audmapp_of_match
  2014-07-09  0:59     ` Kuninori Morimoto
@ 2014-07-09  8:26       ` Simon Horman
  -1 siblings, 0 replies; 4+ messages in thread
From: Simon Horman @ 2014-07-09  8:26 UTC (permalink / raw)
  To: Kuninori Morimoto
  Cc: Linux-SH, Julia Lawall, Vinod Koul, kbuild test robot,
	Linux-Kernel, sboyd, kbuild

On Tue, Jul 08, 2014 at 05:59:07PM -0700, Kuninori Morimoto wrote:
> From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
> 
> This patch solve this issue
> 
> drivers/dma/sh/rcar-audmapp.c:357:41-42: audmapp_of_match is not NULL terminated at line 357
> 
> Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>

Thanks, I will add this to the rcar-audmapp-for-v3.17 branch
of the renesas tree, where this problem was added.

> ---
>  drivers/dma/sh/rcar-audmapp.c |    1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/dma/sh/rcar-audmapp.c b/drivers/dma/sh/rcar-audmapp.c
> index 0774c36..dabbf0a 100644
> --- a/drivers/dma/sh/rcar-audmapp.c
> +++ b/drivers/dma/sh/rcar-audmapp.c
> @@ -355,6 +355,7 @@ static int audmapp_remove(struct platform_device *pdev)
>  
>  static const struct of_device_id audmapp_of_match[] = {
>  	{ .compatible = "renesas,rcar-audmapp", },
> +	{},
>  };
>  
>  static struct platform_driver audmapp_driver = {
> -- 
> 1.7.9.5
> 

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] dma: rcar-audmapp: add NULL terminater on audmapp_of_match
@ 2014-07-09  8:26       ` Simon Horman
  0 siblings, 0 replies; 4+ messages in thread
From: Simon Horman @ 2014-07-09  8:26 UTC (permalink / raw)
  To: Kuninori Morimoto
  Cc: Linux-SH, Julia Lawall, Vinod Koul, kbuild test robot,
	Linux-Kernel, sboyd, kbuild

On Tue, Jul 08, 2014 at 05:59:07PM -0700, Kuninori Morimoto wrote:
> From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
> 
> This patch solve this issue
> 
> drivers/dma/sh/rcar-audmapp.c:357:41-42: audmapp_of_match is not NULL terminated at line 357
> 
> Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>

Thanks, I will add this to the rcar-audmapp-for-v3.17 branch
of the renesas tree, where this problem was added.

> ---
>  drivers/dma/sh/rcar-audmapp.c |    1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/dma/sh/rcar-audmapp.c b/drivers/dma/sh/rcar-audmapp.c
> index 0774c36..dabbf0a 100644
> --- a/drivers/dma/sh/rcar-audmapp.c
> +++ b/drivers/dma/sh/rcar-audmapp.c
> @@ -355,6 +355,7 @@ static int audmapp_remove(struct platform_device *pdev)
>  
>  static const struct of_device_id audmapp_of_match[] = {
>  	{ .compatible = "renesas,rcar-audmapp", },
> +	{},
>  };
>  
>  static struct platform_driver audmapp_driver = {
> -- 
> 1.7.9.5
> 

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2014-07-09  8:26 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <53bc1736.wQxo84tuhA7/j+O2%fengguang.wu@intel.com>
     [not found] ` <alpine.DEB.2.02.1407082242560.2069@localhost6.localdomain6>
2014-07-09  0:59   ` [PATCH] dma: rcar-audmapp: add NULL terminater on audmapp_of_match Kuninori Morimoto
2014-07-09  0:59     ` Kuninori Morimoto
2014-07-09  8:26     ` Simon Horman
2014-07-09  8:26       ` Simon Horman

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.