Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1226426 > unrolled thread

[PATCH] ARM: pxa: add wm9713 codec

Started byRobert Jarzmik <robert.jarzmik@free.fr>
First post2015-09-16 21:50 +0200
Last post2015-09-18 11:50 +0200
Articles 3 — 2 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH] ARM: pxa: add wm9713 codec Robert Jarzmik <robert.jarzmik@free.fr> - 2015-09-16 21:50 +0200
    Re: [PATCH] ARM: pxa: add wm9713 codec Igor Grinberg <grinberg@compulab.co.il> - 2015-09-18 11:10 +0200
      Re: [PATCH] ARM: pxa: add wm9713 codec Robert Jarzmik <robert.jarzmik@free.fr> - 2015-09-18 11:50 +0200

#1226426 — [PATCH] ARM: pxa: add wm9713 codec

FromRobert Jarzmik <robert.jarzmik@free.fr>
Date2015-09-16 21:50 +0200
Subject[PATCH] ARM: pxa: add wm9713 codec
Message-ID<q9qSm-5HH-11@gated-at.bofh.it>
The mioa701 is using the wm9713 for audio, battery and touchscreen. Add
the missing audio part, which disappeared.

Signed-off-by: Robert Jarzmik <robert.jarzmik@free.fr>
---
 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,
-- 
2.1.4

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [next] | [standalone]


#1227686

FromIgor Grinberg <grinberg@compulab.co.il>
Date2015-09-18 11:10 +0200
Message-ID<q9ZQ6-6yg-7@gated-at.bofh.it>
In reply to#1226426
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 <robert.jarzmik@free.fr>

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.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [next] | [standalone]


#1227717

FromRobert Jarzmik <robert.jarzmik@free.fr>
Date2015-09-18 11:50 +0200
Message-ID<qa0sO-7jM-17@gated-at.bofh.it>
In reply to#1227686
Igor Grinberg <grinberg@compulab.co.il> writes:

> 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 <robert.jarzmik@free.fr>
>
> The subject is a bit misleading..
> I think it is worth specifying mioa701 in subject..
Absolutely, it is even a requirement to have "ARM: pxa: mioa701: " as a prefix.

Thanks for catching this.

-- 
Robert
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web