From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753296AbbIRJBf (ORCPT ); Fri, 18 Sep 2015 05:01:35 -0400 Received: from softlayer.compulab.co.il ([50.23.254.55]:45841 "EHLO compulab.co.il" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752822AbbIRJBc (ORCPT ); Fri, 18 Sep 2015 05:01:32 -0400 X-Greylist: delayed 995 seconds by postgrey-1.27 at vger.kernel.org; Fri, 18 Sep 2015 05:01:32 EDT Subject: Re: [PATCH] ARM: pxa: add wm9713 codec To: Robert Jarzmik , Daniel Mack , Haojian Zhuang References: <1442432561-32722-1-git-send-email-robert.jarzmik@free.fr> Cc: linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org From: Igor Grinberg Organization: CompuLab Ltd. Message-ID: <55FBCF05.2090707@compulab.co.il> Date: Fri, 18 Sep 2015 11:44:53 +0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.2.0 MIME-Version: 1.0 In-Reply-To: <1442432561-32722-1-git-send-email-robert.jarzmik@free.fr> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - softlayer.compulab.co.il X-AntiAbuse: Original Domain - vger.kernel.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - compulab.co.il X-Get-Message-Sender-Via: softlayer.compulab.co.il: acl_c_relayhosts_text_entry: grinberg@compulab.co.il|compulab.co.il Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Robert, On 09/16/15 22:42, Robert Jarzmik wrote: > The mioa701 is using the wm9713 for audio, battery and touchscreen. Add > the missing audio part, which disappeared. > > Signed-off-by: Robert Jarzmik The subject is a bit misleading.. I think it is worth specifying mioa701 in subject.. > --- > arch/arm/mach-pxa/mioa701.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/arch/arm/mach-pxa/mioa701.c b/arch/arm/mach-pxa/mioa701.c > index a7b392415a9e..d8e356d63471 100644 > --- a/arch/arm/mach-pxa/mioa701.c > +++ b/arch/arm/mach-pxa/mioa701.c > @@ -680,6 +680,7 @@ MIO_SIMPLE_DEV(mioa701_led, "leds-gpio", &gpio_led_info) > MIO_SIMPLE_DEV(pxa2xx_pcm, "pxa2xx-pcm", NULL) > MIO_SIMPLE_DEV(mioa701_sound, "mioa701-wm9713", NULL) > MIO_SIMPLE_DEV(mioa701_board, "mioa701-board", NULL) > +MIO_SIMPLE_DEV(wm9713_acodec, "wm9713-codec", NULL); > MIO_SIMPLE_DEV(gpio_vbus, "gpio-vbus", &gpio_vbus_data); > MIO_SIMPLE_DEV(mioa701_camera, "soc-camera-pdrv",&iclink); > > @@ -687,6 +688,7 @@ static struct platform_device *devices[] __initdata = { > &mioa701_gpio_keys, > &mioa701_backlight, > &mioa701_led, > + &wm9713_acodec, > &pxa2xx_pcm, > &mioa701_sound, > &power_dev, > -- Regards, Igor.