From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755231AbaGII0d (ORCPT ); Wed, 9 Jul 2014 04:26:33 -0400 Received: from kirsty.vergenet.net ([202.4.237.240]:50865 "EHLO kirsty.vergenet.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753974AbaGII0a (ORCPT ); Wed, 9 Jul 2014 04:26:30 -0400 Date: Wed, 9 Jul 2014 10:26:22 +0200 From: Simon Horman To: Kuninori Morimoto Cc: Linux-SH , Julia Lawall , Vinod Koul , kbuild test robot , Linux-Kernel , sboyd@codeaurora.org, kbuild@01.org Subject: Re: [PATCH] dma: rcar-audmapp: add NULL terminater on audmapp_of_match Message-ID: <20140709082620.GF5656@verge.net.au> References: <53bc1736.wQxo84tuhA7/j+O2%fengguang.wu@intel.com> <87simbuz3a.wl%kuninori.morimoto.gx@renesas.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <87simbuz3a.wl%kuninori.morimoto.gx@renesas.com> Organisation: Horms Solutions Ltd. User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Jul 08, 2014 at 05:59:07PM -0700, Kuninori Morimoto wrote: > From: Kuninori Morimoto > > 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 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 >