TO: Kuninori Morimoto <kuninori.morimoto...@renesas.com>
CC: Simon Horman <horms+rene...@verge.net.au>

tree:   git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git 
rcar-audmapp-for-v3.17
head:   f86dc95232fa6999ab6246ef2e70f3805be7d4c3
commit: f86dc95232fa6999ab6246ef2e70f3805be7d4c3 [3/3] dma: rcar-audmapp: add 
DT support

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

Please consider folding the attached diff :-)

---
0-DAY kernel build testing backend              Open Source Technology Center
http://lists.01.org/mailman/listinfo/kbuild                 Intel Corporation
From: Dan Carpenter <dan.carpen...@oracle.com>
Subject: [PATCH] dma: rcar-audmapp: fix coccinelle warnings
TO: Simon Horman <horms+rene...@verge.net.au>
CC: Kuninori Morimoto <kuninori.morimoto...@renesas.com>
CC: dmaeng...@vger.kernel.org 
CC: linux-ker...@vger.kernel.org 
CC: devicet...@vger.kernel.org 

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

Make sure of_device_id tables are NULL terminated
Generated by: scripts/coccinelle/misc/of_table.cocci

CC: Kuninori Morimoto <kuninori.morimoto...@renesas.com>
CC: Simon Horman <horms+rene...@verge.net.au>
Signed-off-by: Dan Carpenter <dan.carpen...@oracle.com>
---

Please take the patch only if it's a positive warning. Thanks!

 rcar-audmapp.c |    1 +
 1 file changed, 1 insertion(+)

--- a/drivers/dma/sh/rcar-audmapp.c
+++ b/drivers/dma/sh/rcar-audmapp.c
@@ -355,6 +355,7 @@ static int audmapp_remove(struct platfor
 
 static const struct of_device_id audmapp_of_match[] = {
 	{ .compatible = "renesas,rcar-audmapp", },
+	{},
 };
 
 static struct platform_driver audmapp_driver = {
_______________________________________________
kbuild mailing list
kbuild@lists.01.org
https://lists.01.org/mailman/listinfo/kbuild
_______________________________________________
kbuild mailing list
kbuild@lists.01.org
https://lists.01.org/mailman/listinfo/kbuild

Reply via email to