All of lore.kernel.org
 help / color / mirror / Atom feed
* sound/soc/pxa/tosa.c: removed duplicated include
@ 2008-07-26 12:43 Huang Weiyi
  2008-07-27 11:36 ` Mark Brown
  0 siblings, 1 reply; 5+ messages in thread
From: Huang Weiyi @ 2008-07-26 12:43 UTC (permalink / raw)
  To: liam.girdwood, broonie; +Cc: alsa-devel

Removed duplicated include <asm/arch/tosa.h> in 
sound/soc/pxa/tosa.c.

Signed-off-by: Huang Weiyi <weiyi.huang@gmail.com>

diff --git a/sound/soc/pxa/tosa.c b/sound/soc/pxa/tosa.c
index fe6cca9..22971a0 100644
--- a/sound/soc/pxa/tosa.c
+++ b/sound/soc/pxa/tosa.c
@@ -33,7 +33,6 @@
 #include <asm/arch/pxa-regs.h>
 #include <asm/arch/hardware.h>
 #include <asm/arch/audio.h>
-#include <asm/arch/tosa.h>

 #include "../codecs/wm9712.h"
 #include "pxa2xx-pcm.h"

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

* Re: sound/soc/pxa/tosa.c: removed duplicated include
  2008-07-26 12:43 sound/soc/pxa/tosa.c: removed duplicated include Huang Weiyi
@ 2008-07-27 11:36 ` Mark Brown
  2008-07-27 13:04   ` Huang Weiyi
  0 siblings, 1 reply; 5+ messages in thread
From: Mark Brown @ 2008-07-27 11:36 UTC (permalink / raw)
  To: Huang Weiyi; +Cc: liam.girdwood, alsa-devel

On Sat, Jul 26, 2008 at 08:43:01PM +0800, Huang Weiyi wrote:
> Removed duplicated include <asm/arch/tosa.h> in 
> sound/soc/pxa/tosa.c.

Prior to your patch I see:

| $ grep include.*tosa.h sound/soc/pxa/tosa.c
| #include <asm/arch/tosa.h>

Where is the second inclusion?

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

* Re: sound/soc/pxa/tosa.c: removed duplicated include
  2008-07-27 11:36 ` Mark Brown
@ 2008-07-27 13:04   ` Huang Weiyi
  2008-07-27 17:48     ` Mark Brown
  0 siblings, 1 reply; 5+ messages in thread
From: Huang Weiyi @ 2008-07-27 13:04 UTC (permalink / raw)
  To: Huang Weiyi, liam.girdwood, alsa-devel

On Sun, 27 Jul 2008 12:36:24 +0100
Mark Brown <broonie@opensource.wolfsonmicro.com> wrote:

broonie>On Sat, Jul 26, 2008 at 08:43:01PM +0800, Huang Weiyi wrote:
broonie>> Removed duplicated include <asm/arch/tosa.h> in 
broonie>> sound/soc/pxa/tosa.c.
broonie>
broonie>Prior to your patch I see:
broonie>
broonie>| $ grep include.*tosa.h sound/soc/pxa/tosa.c
broonie>| #include <asm/arch/tosa.h>
broonie>
broonie>Where is the second inclusion?

In the commit 30d38542ec777468bb6a31829076a2dbc5690e35,
duplicated include <asm/arch/tosa.h> was found in line 32 and 36.

-- 
Huang Weiyi <weiyi.huang@gmail.com>

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

* Re: sound/soc/pxa/tosa.c: removed duplicated include
  2008-07-27 13:04   ` Huang Weiyi
@ 2008-07-27 17:48     ` Mark Brown
  2008-07-28 14:28       ` Takashi Iwai
  0 siblings, 1 reply; 5+ messages in thread
From: Mark Brown @ 2008-07-27 17:48 UTC (permalink / raw)
  To: Huang Weiyi; +Cc: liam.girdwood, alsa-devel

On Sun, Jul 27, 2008 at 09:04:43PM +0800, Huang Weiyi wrote:

> In the commit 30d38542ec777468bb6a31829076a2dbc5690e35,
> duplicated include <asm/arch/tosa.h> was found in line 32 and 36.

Gah, right, I see.  That patch introducing the duplicate went in via ARM
tree and your fix can't be applied to ALSA until current mainline with
that commit in it has been merged into ALSA.  Please submit your patch
to the ARM patch tracker for merge that way - that's probably the
easiest thing here to do here:

Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com>

-- 
"You grabbed my hand and we fell into it, like a daydream - or a fever."

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

* Re: sound/soc/pxa/tosa.c: removed duplicated include
  2008-07-27 17:48     ` Mark Brown
@ 2008-07-28 14:28       ` Takashi Iwai
  0 siblings, 0 replies; 5+ messages in thread
From: Takashi Iwai @ 2008-07-28 14:28 UTC (permalink / raw)
  To: Mark Brown; +Cc: liam.girdwood, alsa-devel, Huang Weiyi

At Sun, 27 Jul 2008 18:48:47 +0100,
Mark Brown wrote:
> 
> On Sun, Jul 27, 2008 at 09:04:43PM +0800, Huang Weiyi wrote:
> 
> > In the commit 30d38542ec777468bb6a31829076a2dbc5690e35,
> > duplicated include <asm/arch/tosa.h> was found in line 32 and 36.
> 
> Gah, right, I see.  That patch introducing the duplicate went in via ARM
> tree and your fix can't be applied to ALSA until current mainline with
> that commit in it has been merged into ALSA.  Please submit your patch
> to the ARM patch tracker for merge that way - that's probably the
> easiest thing here to do here:
> 
> Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com>

The relevant patch already hit Linus tree, so it's fine to apply the
patch now :)


Takashi

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

end of thread, other threads:[~2008-07-28 14:28 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-07-26 12:43 sound/soc/pxa/tosa.c: removed duplicated include Huang Weiyi
2008-07-27 11:36 ` Mark Brown
2008-07-27 13:04   ` Huang Weiyi
2008-07-27 17:48     ` Mark Brown
2008-07-28 14:28       ` Takashi Iwai

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.