linux-omap.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ASoC: OMAP4: MCPDM: Remove unnecessary include of plat/control.h
@ 2010-10-12 13:27 Anand Gadiyar
  2010-10-12 13:29 ` Mark Brown
  2010-10-12 15:06 ` Paul Walmsley
  0 siblings, 2 replies; 5+ messages in thread
From: Anand Gadiyar @ 2010-10-12 13:27 UTC (permalink / raw)
  To: alsa-devel, linux-omap
  Cc: Anand Gadiyar, Misael Lopez Cruz, Liam Girdwood, Mark Brown,
	Paul Walmsley, Tony Lindgren

Commit 346a5c890 (OMAP: control: move plat-omap/control.h
to mach-omap2/control.h) in the linux-omap tree removed
plat/control.h and most of its callers. This one slipped
through - breaking the build as below when
CONFIG_SND_OMAP_SOC_MCPDM is defined. Fix this.

  CC      sound/soc/omap/omap-mcpdm.o
sound/soc/omap/omap-mcpdm.c:35: fatal error: plat/control.h: No such file or directory
compilation terminated.
make[3]: *** [sound/soc/omap/omap-mcpdm.o] Error 1
make[2]: *** [sound/soc/omap] Error 2
make[1]: *** [sound/soc] Error 2
make: *** [sound] Error 2

Signed-off-by: Anand Gadiyar <gadiyar@ti.com>
Cc: Misael Lopez Cruz <misael.lopez@ti.com>
Cc: Liam Girdwood <lrg@slimlogic.co.uk>
Cc: Mark Brown <broonie@opensource.wolfsonmicro.com>
Cc: Paul Walmsley <paul@pwsan.com>
Cc: Tony Lindgren <tony@atomide.com>
---
This break is reproducible on linux-next as of 20101011;
I think it also exists in mainline, but I did not check.

Probably worth taking this through the ALSA tree with Tony
or Paul's ack. 

I'm not subscribed to the alsa list. Please CC me on replies.

 sound/soc/omap/omap-mcpdm.c |    1 -
 1 file changed, 1 deletion(-)

Index: mainline/sound/soc/omap/omap-mcpdm.c
===================================================================
--- mainline.orig/sound/soc/omap/omap-mcpdm.c
+++ mainline/sound/soc/omap/omap-mcpdm.c
@@ -32,7 +32,6 @@
 #include <sound/initval.h>
 #include <sound/soc.h>
 
-#include <plat/control.h>
 #include <plat/dma.h>
 #include <plat/mcbsp.h>
 #include "mcpdm.h"

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

* Re: [PATCH] ASoC: OMAP4: MCPDM: Remove unnecessary include of plat/control.h
  2010-10-12 13:27 [PATCH] ASoC: OMAP4: MCPDM: Remove unnecessary include of plat/control.h Anand Gadiyar
@ 2010-10-12 13:29 ` Mark Brown
  2010-10-12 13:51   ` Jarkko Nikula
  2010-10-12 15:06 ` Paul Walmsley
  1 sibling, 1 reply; 5+ messages in thread
From: Mark Brown @ 2010-10-12 13:29 UTC (permalink / raw)
  To: Anand Gadiyar
  Cc: alsa-devel, Tony Lindgren, Paul Walmsley, Misael Lopez Cruz,
	linux-omap, Liam Girdwood

On Tue, Oct 12, 2010 at 06:57:58PM +0530, Anand Gadiyar wrote:
> Commit 346a5c890 (OMAP: control: move plat-omap/control.h
> to mach-omap2/control.h) in the linux-omap tree removed
> plat/control.h and most of its callers. This one slipped
> through - breaking the build as below when
> CONFIG_SND_OMAP_SOC_MCPDM is defined. Fix this.

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

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

* Re: [PATCH] ASoC: OMAP4: MCPDM: Remove unnecessary include of plat/control.h
  2010-10-12 13:29 ` Mark Brown
@ 2010-10-12 13:51   ` Jarkko Nikula
  2010-10-12 20:27     ` Tony Lindgren
  0 siblings, 1 reply; 5+ messages in thread
From: Jarkko Nikula @ 2010-10-12 13:51 UTC (permalink / raw)
  To: Mark Brown
  Cc: alsa-devel, linux-omap, Lindgren, Paul Walmsley, Tony, Cruz,
	Misael, Liam Girdwood, Anand Gadiyar

On Tue, 12 Oct 2010 14:29:48 +0100
Mark Brown <broonie@opensource.wolfsonmicro.com> wrote:

> On Tue, Oct 12, 2010 at 06:57:58PM +0530, Anand Gadiyar wrote:
> > Commit 346a5c890 (OMAP: control: move plat-omap/control.h
> > to mach-omap2/control.h) in the linux-omap tree removed
> > plat/control.h and most of its callers. This one slipped
> > through - breaking the build as below when
> > CONFIG_SND_OMAP_SOC_MCPDM is defined. Fix this.
> 
> Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com>

Tony, Liam: This must come via linux-omap together with other Paul's
patches. Does not conflict with ASoC multi-component change.

Acked-by: Jarkko Nikula <jhnikula@gmail.com>

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

* Re: [PATCH] ASoC: OMAP4: MCPDM: Remove unnecessary include of plat/control.h
  2010-10-12 13:27 [PATCH] ASoC: OMAP4: MCPDM: Remove unnecessary include of plat/control.h Anand Gadiyar
  2010-10-12 13:29 ` Mark Brown
@ 2010-10-12 15:06 ` Paul Walmsley
  1 sibling, 0 replies; 5+ messages in thread
From: Paul Walmsley @ 2010-10-12 15:06 UTC (permalink / raw)
  To: Anand Gadiyar
  Cc: alsa-devel, linux-omap, Misael Lopez Cruz, Liam Girdwood,
	Mark Brown, Tony Lindgren

On Tue, 12 Oct 2010, Anand Gadiyar wrote:

> Commit 346a5c890 (OMAP: control: move plat-omap/control.h
> to mach-omap2/control.h) in the linux-omap tree removed
> plat/control.h and most of its callers. This one slipped
> through - breaking the build as below when
> CONFIG_SND_OMAP_SOC_MCPDM is defined. Fix this.
> 
>   CC      sound/soc/omap/omap-mcpdm.o
> sound/soc/omap/omap-mcpdm.c:35: fatal error: plat/control.h: No such file or directory
> compilation terminated.
> make[3]: *** [sound/soc/omap/omap-mcpdm.o] Error 1
> make[2]: *** [sound/soc/omap] Error 2
> make[1]: *** [sound/soc] Error 2
> make: *** [sound] Error 2
> 
> Signed-off-by: Anand Gadiyar <gadiyar@ti.com>
> Cc: Misael Lopez Cruz <misael.lopez@ti.com>
> Cc: Liam Girdwood <lrg@slimlogic.co.uk>
> Cc: Mark Brown <broonie@opensource.wolfsonmicro.com>
> Cc: Paul Walmsley <paul@pwsan.com>
> Cc: Tony Lindgren <tony@atomide.com>
> ---
> This break is reproducible on linux-next as of 20101011;
> I think it also exists in mainline, but I did not check.
> 
> Probably worth taking this through the ALSA tree with Tony
> or Paul's ack. 

Acked-by: Paul Walmsley <paul@pwsan.com>

thanks Anand,


- Paul

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

* Re: [PATCH] ASoC: OMAP4: MCPDM: Remove unnecessary include of plat/control.h
  2010-10-12 13:51   ` Jarkko Nikula
@ 2010-10-12 20:27     ` Tony Lindgren
  0 siblings, 0 replies; 5+ messages in thread
From: Tony Lindgren @ 2010-10-12 20:27 UTC (permalink / raw)
  To: Jarkko Nikula
  Cc: alsa-devel, Mark Brown, Paul Walmsley, Misael Lopez Cruz,
	linux-omap, Liam Girdwood, Anand Gadiyar

* Jarkko Nikula <jhnikula@gmail.com> [101012 06:42]:
> On Tue, 12 Oct 2010 14:29:48 +0100
> Mark Brown <broonie@opensource.wolfsonmicro.com> wrote:
> 
> > On Tue, Oct 12, 2010 at 06:57:58PM +0530, Anand Gadiyar wrote:
> > > Commit 346a5c890 (OMAP: control: move plat-omap/control.h
> > > to mach-omap2/control.h) in the linux-omap tree removed
> > > plat/control.h and most of its callers. This one slipped
> > > through - breaking the build as below when
> > > CONFIG_SND_OMAP_SOC_MCPDM is defined. Fix this.
> > 
> > Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
> 
> Tony, Liam: This must come via linux-omap together with other Paul's
> patches. Does not conflict with ASoC multi-component change.
> 
> Acked-by: Jarkko Nikula <jhnikula@gmail.com>

Thanks, adding into omap-for-linus.

Tony

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

end of thread, other threads:[~2010-10-12 20:27 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-10-12 13:27 [PATCH] ASoC: OMAP4: MCPDM: Remove unnecessary include of plat/control.h Anand Gadiyar
2010-10-12 13:29 ` Mark Brown
2010-10-12 13:51   ` Jarkko Nikula
2010-10-12 20:27     ` Tony Lindgren
2010-10-12 15:06 ` Paul Walmsley

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).