From mboxrd@z Thu Jan 1 00:00:00 1970 From: Vinod Koul Subject: Re: [PATCH 18/23] dma: coh901318: add devicetree support Date: Mon, 22 Apr 2013 16:04:37 +0530 Message-ID: <20130422103437.GX24632@intel.com> References: <1366624770-6786-1-git-send-email-linus.walleij@stericsson.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Content-Disposition: inline In-Reply-To: <1366624770-6786-1-git-send-email-linus.walleij@stericsson.com> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=m.gmane.org@lists.infradead.org To: Linus Walleij Cc: Linus Walleij , devicetree-discuss@lists.ozlabs.org, Arnd Bergmann , linux-arm-kernel@lists.infradead.org, Dan Williams List-Id: devicetree@vger.kernel.org On Mon, Apr 22, 2013 at 11:59:30AM +0200, Linus Walleij wrote: > From: Linus Walleij > > This adds support for probing the COH 901 318 DMA controller > from the device tree. > > Cc: Vinod Koul > Signed-off-by: Linus Walleij Acked-by: Vinod Koul -- ~Vinod > --- > Hi Vinod, I'm seeking an ACK on this patch to take it through > the ARM SoC tree. > --- > drivers/dma/coh901318.c | 5 +++++ > 1 file changed, 5 insertions(+) > > diff --git a/drivers/dma/coh901318.c b/drivers/dma/coh901318.c > index 797940e..2855646 100644 > --- a/drivers/dma/coh901318.c > +++ b/drivers/dma/coh901318.c > @@ -2758,11 +2758,16 @@ static int __exit coh901318_remove(struct platform_device *pdev) > return 0; > } > > +static const struct of_device_id coh901318_dt_match[] = { > + { .compatible = "stericsson,coh901318" }, > + {}, > +}; > > static struct platform_driver coh901318_driver = { > .remove = __exit_p(coh901318_remove), > .driver = { > .name = "coh901318", > + .of_match_table = coh901318_dt_match, > }, > }; > > -- > 1.7.11.3 >