alsa-devel.alsa-project.org archive mirror
 help / color / mirror / Atom feed
* Re: [PATCH] alsa/Au1xxx-PSC: use resource_size
       [not found] <4BFF33B3.1040506@gmail.com>
@ 2010-05-28  5:08 ` Manuel Lauss
  2010-05-28  5:17   ` Wan ZongShun
  0 siblings, 1 reply; 11+ messages in thread
From: Manuel Lauss @ 2010-05-28  5:08 UTC (permalink / raw)
  To: Wan ZongShun; +Cc: manuel.lauss, alsa-devel, Mark Brown, Andrew Morton

2010/5/28 Wan ZongShun <mcuos.com@gmail.com>:
> Dear Manuel & Mark,
>
> I make a little modification to use the 'resource_size'.

It's okay with me.  You could also modifiy psc-ac97.c in the same way.

       Manuel Lauss

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH] alsa/Au1xxx-PSC: use resource_size
  2010-05-28  5:08 ` [PATCH] alsa/Au1xxx-PSC: use resource_size Manuel Lauss
@ 2010-05-28  5:17   ` Wan ZongShun
  2010-05-28  5:44     ` [PATCH v2] " Wan ZongShun
  0 siblings, 1 reply; 11+ messages in thread
From: Wan ZongShun @ 2010-05-28  5:17 UTC (permalink / raw)
  To: Manuel Lauss; +Cc: manuel.lauss, alsa-devel, Mark Brown, Andrew Morton

2010/5/28 Manuel Lauss <manuel.lauss@googlemail.com>:
> 2010/5/28 Wan ZongShun <mcuos.com@gmail.com>:
>> Dear Manuel & Mark,
>>
>> I make a little modification to use the 'resource_size'.
>
> It's okay with me.  You could also modifiy psc-ac97.c in the same way.
>

Okay, I will merge it you mentioned into my this patch and re-submit
to you later.

Thanks!

>       Manuel Lauss
>



-- 
*linux-arm-kernel mailing list
mail addr:linux-arm-kernel@lists.infradead.org
you can subscribe by:
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

* linux-arm-NUC900 mailing list
mail addr:NUC900@googlegroups.com
main web: https://groups.google.com/group/NUC900
you can subscribe it by sending me mail:
mcuos.com@gmail.com
_______________________________________________
Alsa-devel mailing list
Alsa-devel@alsa-project.org
http://mailman.alsa-project.org/mailman/listinfo/alsa-devel

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH v2] alsa/Au1xxx-PSC: use resource_size
  2010-05-28  5:17   ` Wan ZongShun
@ 2010-05-28  5:44     ` Wan ZongShun
  2010-05-28  5:52       ` Manuel Lauss
  2010-05-31 10:47       ` Mark Brown
  0 siblings, 2 replies; 11+ messages in thread
From: Wan ZongShun @ 2010-05-28  5:44 UTC (permalink / raw)
  To: Manuel Lauss, Mark Brown; +Cc: manuel.lauss, alsa-devel, Andrew Morton

Dear Manuel & Mark,

Fix it again.

Signed-off-by:Wan ZongShun<mcuos.com@gmail.com>

 From 389d787f06d2ac0b4c8cac2705385295b0d7c112 Mon Sep 17 00:00:00 2001
From: zswan <zswan@zswan-marvell.(none)>
Date: Fri, 28 May 2010 13:39:12 +0800
Subject: [PATCH 4/4] -fix-some-issues-of-aux01 v1

---
  sound/soc/au1x/psc-ac97.c |   13 ++++++-------
  sound/soc/au1x/psc-i2s.c  |   12 ++++++------
  2 files changed, 12 insertions(+), 13 deletions(-)

diff --git a/sound/soc/au1x/psc-ac97.c b/sound/soc/au1x/psc-ac97.c
index a61ccd2..55e1d15 100644
--- a/sound/soc/au1x/psc-ac97.c
+++ b/sound/soc/au1x/psc-ac97.c
@@ -375,12 +375,12 @@ static int __devinit au1xpsc_ac97_drvprobe(struct 
platform_device *pdev)
  	}

  	ret = -EBUSY;
-	wd->ioarea = request_mem_region(r->start, r->end - r->start + 1,
-					"au1xpsc_ac97");
+	wd->ioarea = request_mem_region(r->start, resource_size(r),
+					pdev->name);
  	if (!wd->ioarea)
  		goto out0;

-	wd->mmio = ioremap(r->start, 0xffff);
+	wd->mmio = ioremap(r->start, resource_size(r));
  	if (!wd->mmio)
  		goto out1;

@@ -410,8 +410,7 @@ static int __devinit au1xpsc_ac97_drvprobe(struct 
platform_device *pdev)

  	snd_soc_unregister_dai(&au1xpsc_ac97_dai);
  out1:
-	release_resource(wd->ioarea);
-	kfree(wd->ioarea);
+	release_mem_region(r->start, resource_size(r));
  out0:
  	kfree(wd);
  	return ret;
@@ -420,6 +419,7 @@ out0:
  static int __devexit au1xpsc_ac97_drvremove(struct platform_device *pdev)
  {
  	struct au1xpsc_audio_data *wd = platform_get_drvdata(pdev);
+	struct resource *r = platform_get_resource(pdev, IORESOURCE_MEM, 0);

  	if (wd->dmapd)
  		au1xpsc_pcm_destroy(wd->dmapd);
@@ -433,8 +433,7 @@ static int __devexit au1xpsc_ac97_drvremove(struct 
platform_device *pdev)
  	au_sync();

  	iounmap(wd->mmio);
-	release_resource(wd->ioarea);
-	kfree(wd->ioarea);
+	release_mem_region(r->start, resource_size(r));
  	kfree(wd);

  	au1xpsc_ac97_workdata = NULL;	/* MDEV */
diff --git a/sound/soc/au1x/psc-i2s.c b/sound/soc/au1x/psc-i2s.c
index 495be6e..d529283 100644
--- a/sound/soc/au1x/psc-i2s.c
+++ b/sound/soc/au1x/psc-i2s.c
@@ -321,12 +321,12 @@ static int __init au1xpsc_i2s_drvprobe(struct 
platform_device *pdev)
  	}

  	ret = -EBUSY;
-	wd->ioarea = request_mem_region(r->start, r->end - r->start + 1,
-					"au1xpsc_i2s");
+	wd->ioarea = request_mem_region(r->start, resource_size(r),
+					pdev->name);
  	if (!wd->ioarea)
  		goto out0;

-	wd->mmio = ioremap(r->start, 0xffff);
+	wd->mmio = ioremap(r->start, resource_size(r));
  	if (!wd->mmio)
  		goto out1;

@@ -362,8 +362,7 @@ static int __init au1xpsc_i2s_drvprobe(struct 
platform_device *pdev)

  	snd_soc_unregister_dai(&au1xpsc_i2s_dai);
  out1:
-	release_resource(wd->ioarea);
-	kfree(wd->ioarea);
+	release_mem_region(r->start, resource_size(r));
  out0:
  	kfree(wd);
  	return ret;
@@ -372,6 +371,7 @@ out0:
  static int __devexit au1xpsc_i2s_drvremove(struct platform_device *pdev)
  {
  	struct au1xpsc_audio_data *wd = platform_get_drvdata(pdev);
+	struct resource *r = platform_get_resource(pdev, IORESOURCE_MEM, 0);

  	if (wd->dmapd)
  		au1xpsc_pcm_destroy(wd->dmapd);
@@ -384,7 +384,7 @@ static int __devexit au1xpsc_i2s_drvremove(struct 
platform_device *pdev)
  	au_sync();

  	iounmap(wd->mmio);
-	release_resource(wd->ioarea);
+	release_mem_region(r->start, resource_size(r));
  	kfree(wd->ioarea);
  	kfree(wd);

-- 
1.6.3.3

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* Re: [PATCH v2] alsa/Au1xxx-PSC: use resource_size
  2010-05-28  5:44     ` [PATCH v2] " Wan ZongShun
@ 2010-05-28  5:52       ` Manuel Lauss
  2010-05-28  6:31         ` Wan ZongShun
  2010-05-31 10:47       ` Mark Brown
  1 sibling, 1 reply; 11+ messages in thread
From: Manuel Lauss @ 2010-05-28  5:52 UTC (permalink / raw)
  To: Wan ZongShun; +Cc: manuel.lauss, alsa-devel, Mark Brown, Andrew Morton

On Fri, May 28, 2010 at 7:44 AM, Wan ZongShun <mcuos.com@gmail.com> wrote:
> Dear Manuel & Mark,
>
> Fix it again.

> Signed-off-by:Wan ZongShun<mcuos.com@gmail.com>
>
> From 389d787f06d2ac0b4c8cac2705385295b0d7c112 Mon Sep 17 00:00:00 2001
> From: zswan <zswan@zswan-marvell.(none)>
> Date: Fri, 28 May 2010 13:39:12 +0800
> Subject: [PATCH 4/4] -fix-some-issues-of-aux01 v1

Please write a proper log entry.


> --- a/sound/soc/au1x/psc-i2s.c
> +++ b/sound/soc/au1x/psc-i2s.c
[snip]
> @@ -372,6 +371,7 @@ out0:
>  static int __devexit au1xpsc_i2s_drvremove(struct platform_device *pdev)
>  {
>        struct au1xpsc_audio_data *wd = platform_get_drvdata(pdev);
> +       struct resource *r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
>
>        if (wd->dmapd)
>                au1xpsc_pcm_destroy(wd->dmapd);
> @@ -384,7 +384,7 @@ static int __devexit au1xpsc_i2s_drvremove(struct
> platform_device *pdev)
>        au_sync();
>
>        iounmap(wd->mmio);
> -       release_resource(wd->ioarea);
> +       release_mem_region(r->start, resource_size(r));
>        kfree(wd->ioarea);

This kfree() needs to go too.  (Sidenote:  I wrote the code this way to avoid
the platform_get_resource() you inserted above).

>        kfree(wd);

I'll run it on real hardware just to be sure.

       Manuel

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH v2] alsa/Au1xxx-PSC: use resource_size
  2010-05-28  5:52       ` Manuel Lauss
@ 2010-05-28  6:31         ` Wan ZongShun
  2010-05-28  6:53           ` Manuel Lauss
  0 siblings, 1 reply; 11+ messages in thread
From: Wan ZongShun @ 2010-05-28  6:31 UTC (permalink / raw)
  To: Manuel Lauss; +Cc: manuel.lauss, alsa-devel, Mark Brown, Andrew Morton

Dear Manuel,

For insteading of using the 'platform_get_resource' in remove function,
I think it better to put 'struct resource *r' into 'wd' structure.

I have re-organized the patch and submit to you.

Of course, I must get your approval if I do above. :)

Signed-off-by:Wan ZongShun<mcuos.com@gmail.com>

---
  sound/soc/au1x/psc-ac97.c |   17 ++++++-----------
  sound/soc/au1x/psc-i2s.c  |   17 ++++++-----------
  sound/soc/au1x/psc.h      |    2 +-
  3 files changed, 13 insertions(+), 23 deletions(-)

diff --git a/sound/soc/au1x/psc-ac97.c b/sound/soc/au1x/psc-ac97.c
index a61ccd2..6bd7376 100644
--- a/sound/soc/au1x/psc-ac97.c
+++ b/sound/soc/au1x/psc-ac97.c
@@ -355,7 +355,6 @@ EXPORT_SYMBOL_GPL(au1xpsc_ac97_dai);
  static int __devinit au1xpsc_ac97_drvprobe(struct platform_device *pdev)
  {
  	int ret;
-	struct resource *r;
  	unsigned long sel;
  	struct au1xpsc_audio_data *wd;

@@ -368,19 +367,17 @@ static int __devinit au1xpsc_ac97_drvprobe(struct 
platform_device *pdev)

  	mutex_init(&wd->lock);

-	r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-	if (!r) {
+	wd->r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
+	if (!wd->r) {
  		ret = -ENODEV;
  		goto out0;
  	}

  	ret = -EBUSY;
-	wd->ioarea = request_mem_region(r->start, r->end - r->start + 1,
-					"au1xpsc_ac97");
-	if (!wd->ioarea)
+	if (!request_mem_region(wd->r->start, resource_size(wd->r), pdev->name))
  		goto out0;

-	wd->mmio = ioremap(r->start, 0xffff);
+	wd->mmio = ioremap(wd->r->start, resource_size(wd->r));
  	if (!wd->mmio)
  		goto out1;

@@ -410,8 +407,7 @@ static int __devinit au1xpsc_ac97_drvprobe(struct 
platform_device *pdev)

  	snd_soc_unregister_dai(&au1xpsc_ac97_dai);
  out1:
-	release_resource(wd->ioarea);
-	kfree(wd->ioarea);
+	release_mem_region(wd->r->start, resource_size(wd->r));
  out0:
  	kfree(wd);
  	return ret;
@@ -433,8 +429,7 @@ static int __devexit au1xpsc_ac97_drvremove(struct 
platform_device *pdev)
  	au_sync();

  	iounmap(wd->mmio);
-	release_resource(wd->ioarea);
-	kfree(wd->ioarea);
+	release_mem_region(wd->r->start, resource_size(wd->r));
  	kfree(wd);

  	au1xpsc_ac97_workdata = NULL;	/* MDEV */
diff --git a/sound/soc/au1x/psc-i2s.c b/sound/soc/au1x/psc-i2s.c
index 495be6e..9fb3eed 100644
--- a/sound/soc/au1x/psc-i2s.c
+++ b/sound/soc/au1x/psc-i2s.c
@@ -302,7 +302,6 @@ EXPORT_SYMBOL(au1xpsc_i2s_dai);

  static int __init au1xpsc_i2s_drvprobe(struct platform_device *pdev)
  {
-	struct resource *r;
  	unsigned long sel;
  	int ret;
  	struct au1xpsc_audio_data *wd;
@@ -314,19 +313,17 @@ static int __init au1xpsc_i2s_drvprobe(struct 
platform_device *pdev)
  	if (!wd)
  		return -ENOMEM;

-	r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-	if (!r) {
+	wd->r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
+	if (!wd->r) {
  		ret = -ENODEV;
  		goto out0;
  	}

  	ret = -EBUSY;
-	wd->ioarea = request_mem_region(r->start, r->end - r->start + 1,
-					"au1xpsc_i2s");
-	if (!wd->ioarea)
+	if (!request_mem_region(wd->r->start, resource_size(wd->r), pdev->name))
  		goto out0;

-	wd->mmio = ioremap(r->start, 0xffff);
+	wd->mmio = ioremap(wd->r->start, resource_size(wd->r));
  	if (!wd->mmio)
  		goto out1;

@@ -362,8 +359,7 @@ static int __init au1xpsc_i2s_drvprobe(struct 
platform_device *pdev)

  	snd_soc_unregister_dai(&au1xpsc_i2s_dai);
  out1:
-	release_resource(wd->ioarea);
-	kfree(wd->ioarea);
+	release_mem_region(wd->r->start, resource_size(wd->r));
  out0:
  	kfree(wd);
  	return ret;
@@ -384,8 +380,7 @@ static int __devexit au1xpsc_i2s_drvremove(struct 
platform_device *pdev)
  	au_sync();

  	iounmap(wd->mmio);
-	release_resource(wd->ioarea);
-	kfree(wd->ioarea);
+	release_mem_region(wd->r->start, resource_size(wd->r));
  	kfree(wd);

  	au1xpsc_i2s_workdata = NULL;	/* MDEV */
diff --git a/sound/soc/au1x/psc.h b/sound/soc/au1x/psc.h
index 32d3807..4680a53 100644
--- a/sound/soc/au1x/psc.h
+++ b/sound/soc/au1x/psc.h
@@ -32,7 +32,7 @@ struct au1xpsc_audio_data {
  	unsigned long rate;

  	unsigned long pm[2];
-	struct resource *ioarea;
+	struct resource *r;
  	struct mutex lock;
  	struct platform_device *dmapd;
  };
-- 
1.6.3.3

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* Re: [PATCH v2] alsa/Au1xxx-PSC: use resource_size
  2010-05-28  6:31         ` Wan ZongShun
@ 2010-05-28  6:53           ` Manuel Lauss
  2010-05-28  7:05             ` Wan ZongShun
  2010-05-28  9:07             ` Wan ZongShun
  0 siblings, 2 replies; 11+ messages in thread
From: Manuel Lauss @ 2010-05-28  6:53 UTC (permalink / raw)
  To: Wan ZongShun; +Cc: manuel.lauss, alsa-devel, Mark Brown, Andrew Morton

On Fri, May 28, 2010 at 8:31 AM, Wan ZongShun <mcuos.com@gmail.com> wrote:
> Dear Manuel,
>
> For insteading of using the 'platform_get_resource' in remove function,
> I think it better to put 'struct resource *r' into 'wd' structure.
>
> I have re-organized the patch and submit to you.
>
> Of course, I must get your approval if I do above. :)
>
> Signed-off-by:Wan ZongShun<mcuos.com@gmail.com>

The patch doesn't apply at all to latest linus-git.

How about something much simpler, like this for example:

diff --git a/sound/soc/au1x/psc-ac97.c b/sound/soc/au1x/psc-ac97.c
index a61ccd2..a18e924 100644
--- a/sound/soc/au1x/psc-ac97.c
+++ b/sound/soc/au1x/psc-ac97.c
@@ -375,7 +375,7 @@ static int __devinit au1xpsc_ac97_drvprobe(struct
platform_device *pdev)
        }

        ret = -EBUSY;
-       wd->ioarea = request_mem_region(r->start, r->end - r->start + 1,
+       wd->ioarea = request_mem_region(r->start, resource_size(r),
                                        "au1xpsc_ac97");
        if (!wd->ioarea)
                goto out0;
diff --git a/sound/soc/au1x/psc-i2s.c b/sound/soc/au1x/psc-i2s.c
index 495be6e..76e848f 100644
--- a/sound/soc/au1x/psc-i2s.c
+++ b/sound/soc/au1x/psc-i2s.c
@@ -321,7 +321,7 @@ static int __init au1xpsc_i2s_drvprobe(struct
platform_device *pdev)
        }

        ret = -EBUSY;
-       wd->ioarea = request_mem_region(r->start, r->end - r->start + 1,
+       wd->ioarea = request_mem_region(r->start, resource_size(r),
                                        "au1xpsc_i2s");
        if (!wd->ioarea)
                goto out0;

Manuel

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* Re: [PATCH v2] alsa/Au1xxx-PSC: use resource_size
  2010-05-28  6:53           ` Manuel Lauss
@ 2010-05-28  7:05             ` Wan ZongShun
  2010-05-28  9:07             ` Wan ZongShun
  1 sibling, 0 replies; 11+ messages in thread
From: Wan ZongShun @ 2010-05-28  7:05 UTC (permalink / raw)
  To: Manuel Lauss; +Cc: manuel.lauss, alsa-devel, Mark Brown, Andrew Morton

2010/5/28 Manuel Lauss <manuel.lauss@googlemail.com>:
> On Fri, May 28, 2010 at 8:31 AM, Wan ZongShun <mcuos.com@gmail.com> wrote:
>> Dear Manuel,
>>
>> For insteading of using the 'platform_get_resource' in remove function,
>> I think it better to put 'struct resource *r' into 'wd' structure.
>>
>> I have re-organized the patch and submit to you.
>>
>> Of course, I must get your approval if I do above. :)
>>
>> Signed-off-by:Wan ZongShun<mcuos.com@gmail.com>
>
> The patch doesn't apply at all to latest linus-git.
>
> How about something much simpler, like this for example:
>

Okay, maybe it better, but I just think the 'release_mem_region' and
'request_mem_region'
should be paired.

Every things changed are up to you, this patch is not bad to me. :)


> diff --git a/sound/soc/au1x/psc-ac97.c b/sound/soc/au1x/psc-ac97.c
> index a61ccd2..a18e924 100644
> --- a/sound/soc/au1x/psc-ac97.c
> +++ b/sound/soc/au1x/psc-ac97.c
> @@ -375,7 +375,7 @@ static int __devinit au1xpsc_ac97_drvprobe(struct
> platform_device *pdev)
>        }
>
>        ret = -EBUSY;
> -       wd->ioarea = request_mem_region(r->start, r->end - r->start + 1,
> +       wd->ioarea = request_mem_region(r->start, resource_size(r),
>                                        "au1xpsc_ac97");
>        if (!wd->ioarea)
>                goto out0;
> diff --git a/sound/soc/au1x/psc-i2s.c b/sound/soc/au1x/psc-i2s.c
> index 495be6e..76e848f 100644
> --- a/sound/soc/au1x/psc-i2s.c
> +++ b/sound/soc/au1x/psc-i2s.c
> @@ -321,7 +321,7 @@ static int __init au1xpsc_i2s_drvprobe(struct
> platform_device *pdev)
>        }
>
>        ret = -EBUSY;
> -       wd->ioarea = request_mem_region(r->start, r->end - r->start + 1,
> +       wd->ioarea = request_mem_region(r->start, resource_size(r),
>                                        "au1xpsc_i2s");
>        if (!wd->ioarea)
>                goto out0;
>
> Manuel
>



-- 
*linux-arm-kernel mailing list
mail addr:linux-arm-kernel@lists.infradead.org
you can subscribe by:
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

* linux-arm-NUC900 mailing list
mail addr:NUC900@googlegroups.com
main web: https://groups.google.com/group/NUC900
you can subscribe it by sending me mail:
mcuos.com@gmail.com
_______________________________________________
Alsa-devel mailing list
Alsa-devel@alsa-project.org
http://mailman.alsa-project.org/mailman/listinfo/alsa-devel

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH v2] alsa/Au1xxx-PSC: use resource_size
  2010-05-28  6:53           ` Manuel Lauss
  2010-05-28  7:05             ` Wan ZongShun
@ 2010-05-28  9:07             ` Wan ZongShun
  2010-05-31 11:08               ` Mark Brown
  1 sibling, 1 reply; 11+ messages in thread
From: Wan ZongShun @ 2010-05-28  9:07 UTC (permalink / raw)
  To: Mark Brown, Liam Girdwood; +Cc: Manuel Lauss, alsa-devel

Dear Mark & Liam,

alsa Au1xxx-PSC use resource_size.

Manuel has agreed this following version patch, now, can it be merged?


Signed-off-by: Wan ZongShun<mcuos.com@gmail.com>
---
  sound/soc/au1x/psc-ac97.c |    2 +-
  sound/soc/au1x/psc-i2s.c  |    2 +-
  2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sound/soc/au1x/psc-ac97.c b/sound/soc/au1x/psc-ac97.c
index a61ccd2..a18e924 100644
--- a/sound/soc/au1x/psc-ac97.c
+++ b/sound/soc/au1x/psc-ac97.c
@@ -375,7 +375,7 @@ static int __devinit au1xpsc_ac97_drvprobe(struct 
platform_device *pdev)
  	}

  	ret = -EBUSY;
-	wd->ioarea = request_mem_region(r->start, r->end - r->start + 1,
+	wd->ioarea = request_mem_region(r->start, resource_size(r),
  					"au1xpsc_ac97");
  	if (!wd->ioarea)
  		goto out0;
diff --git a/sound/soc/au1x/psc-i2s.c b/sound/soc/au1x/psc-i2s.c
index 495be6e..76e848f 100644
--- a/sound/soc/au1x/psc-i2s.c
+++ b/sound/soc/au1x/psc-i2s.c
@@ -321,7 +321,7 @@ static int __init au1xpsc_i2s_drvprobe(struct 
platform_device *pdev)
  	}

  	ret = -EBUSY;
-	wd->ioarea = request_mem_region(r->start, r->end - r->start + 1,
+	wd->ioarea = request_mem_region(r->start, resource_size(r),
  					"au1xpsc_i2s");
  	if (!wd->ioarea)
  		goto out0;
-- 
1.6.3.3

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* Re: [PATCH v2] alsa/Au1xxx-PSC: use resource_size
  2010-05-28  5:44     ` [PATCH v2] " Wan ZongShun
  2010-05-28  5:52       ` Manuel Lauss
@ 2010-05-31 10:47       ` Mark Brown
  1 sibling, 0 replies; 11+ messages in thread
From: Mark Brown @ 2010-05-31 10:47 UTC (permalink / raw)
  To: Wan ZongShun; +Cc: manuel.lauss, Manuel Lauss, alsa-devel, Andrew Morton

On Fri, May 28, 2010 at 01:44:24PM +0800, Wan ZongShun wrote:
> Dear Manuel & Mark,
> 
> Fix it again.
> 
> Signed-off-by:Wan ZongShun<mcuos.com@gmail.com>
> 
> From 389d787f06d2ac0b4c8cac2705385295b0d7c112 Mon Sep 17 00:00:00 2001
> From: zswan <zswan@zswan-marvell.(none)>
> Date: Fri, 28 May 2010 13:39:12 +0800
> Subject: [PATCH 4/4] -fix-some-issues-of-aux01 v1

This looks a bit mangled, could you please confirm what's going on with
this stuff.  It would also be very helpful if you could submit patches
in the format documented in Documentation/SubmittingPatches.

The patch itself looks OK.

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH v2] alsa/Au1xxx-PSC: use resource_size
  2010-05-28  9:07             ` Wan ZongShun
@ 2010-05-31 11:08               ` Mark Brown
  2010-05-31 12:36                 ` Wan ZongShun
  0 siblings, 1 reply; 11+ messages in thread
From: Mark Brown @ 2010-05-31 11:08 UTC (permalink / raw)
  To: Wan ZongShun; +Cc: Manuel Lauss, alsa-devel, Liam Girdwood

On Fri, May 28, 2010 at 05:07:40PM +0800, Wan ZongShun wrote:
> Dear Mark & Liam,
> 
> alsa Au1xxx-PSC use resource_size.
> 
> Manuel has agreed this following version patch, now, can it be merged?

This has wordwrap issues and won't apply, please resend.  As I said
previously please also try to follow Documentation/SubmittingPatches
(eg, don't have non-changelog text above the --- in the mail and use a
standard prefix for the subject line).

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH v2] alsa/Au1xxx-PSC: use resource_size
  2010-05-31 11:08               ` Mark Brown
@ 2010-05-31 12:36                 ` Wan ZongShun
  0 siblings, 0 replies; 11+ messages in thread
From: Wan ZongShun @ 2010-05-31 12:36 UTC (permalink / raw)
  To: Mark Brown; +Cc: Manuel Lauss, alsa-devel, Liam Girdwood

Hi Mark,

Thanks for your comments.
Regarding the patch related to Au1xxx-PSC,
I will modify the patch and resend it tomorrow, please drop all the
previous ones.

2010/5/31 Mark Brown <broonie@opensource.wolfsonmicro.com>:
> On Fri, May 28, 2010 at 05:07:40PM +0800, Wan ZongShun wrote:
>> Dear Mark & Liam,
>>
>> alsa Au1xxx-PSC use resource_size.
>>
>> Manuel has agreed this following version patch, now, can it be merged?
>
> This has wordwrap issues and won't apply, please resend.  As I said
> previously please also try to follow Documentation/SubmittingPatches
> (eg, don't have non-changelog text above the --- in the mail and use a
> standard prefix for the subject line).
>



-- 
*linux-arm-kernel mailing list
mail addr:linux-arm-kernel@lists.infradead.org
you can subscribe by:
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

* linux-arm-NUC900 mailing list
mail addr:NUC900@googlegroups.com
main web: https://groups.google.com/group/NUC900
you can subscribe it by sending me mail:
mcuos.com@gmail.com
_______________________________________________
Alsa-devel mailing list
Alsa-devel@alsa-project.org
http://mailman.alsa-project.org/mailman/listinfo/alsa-devel

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2010-05-31 12:36 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <4BFF33B3.1040506@gmail.com>
2010-05-28  5:08 ` [PATCH] alsa/Au1xxx-PSC: use resource_size Manuel Lauss
2010-05-28  5:17   ` Wan ZongShun
2010-05-28  5:44     ` [PATCH v2] " Wan ZongShun
2010-05-28  5:52       ` Manuel Lauss
2010-05-28  6:31         ` Wan ZongShun
2010-05-28  6:53           ` Manuel Lauss
2010-05-28  7:05             ` Wan ZongShun
2010-05-28  9:07             ` Wan ZongShun
2010-05-31 11:08               ` Mark Brown
2010-05-31 12:36                 ` Wan ZongShun
2010-05-31 10:47       ` Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).