* [PATCH] omap: zoom2: fix build break due to ASoC changes
@ 2010-10-01 20:30 Anand Gadiyar
2010-10-01 20:36 ` Mark Brown
0 siblings, 1 reply; 3+ messages in thread
From: Anand Gadiyar @ 2010-10-01 20:30 UTC (permalink / raw)
To: linux-omap, alsa-devel
Cc: Anand Gadiyar, Tony Lindgren, Liam Girdwood, Mark Brown
Commit f0fba2ad1b6 (ASoC: multi-component - ASoC
Multi-Component Support) in linux-next as of 20101001
broke omap builds with the following errors.
CC arch/arm/mach-omap2/board-zoom2.o
arch/arm/mach-omap2/board-zoom2.c:65: error: 'zoom2_bci_data' undeclared here (not in a function)
arch/arm/mach-omap2/board-zoom2.c:67: error: 'zoom2_usb_data' undeclared here (not in a function)
arch/arm/mach-omap2/board-zoom2.c:68: error: 'zoom2_gpio_data' undeclared here (not in a function)
arch/arm/mach-omap2/board-zoom2.c:69: error: 'zoom2_kp_twl4030_data' undeclared here (not in a function)
arch/arm/mach-omap2/board-zoom2.c:71: error: 'zoom2_vmmc1' undeclared here (not in a function)
arch/arm/mach-omap2/board-zoom2.c:72: error: 'zoom2_vmmc2' undeclared here (not in a function)
arch/arm/mach-omap2/board-zoom2.c:73: error: 'zoom2_vsim' undeclared here (not in a function)
make[1]: *** [arch/arm/mach-omap2/board-zoom2.o] Error 1
make: *** [arch/arm/mach-omap2] Error 2
For zoom2/3, the i2c peripheral initialization is already done in
board-zoom-peripherals.c and should not be done in board-zoom2.c.
Revert all of the changes made to board-zoom2.c to fix the build.
ASoC-related changes should be done separately if needed.
Signed-off-by: Anand Gadiyar <gadiyar@ti.com>
Cc: Tony Lindgren <tony@atomide.com>
Cc: Liam Girdwood <lrg@slimlogic.co.uk>
Cc: Mark Brown <broonie@opensource.wolfsonmicro.com>
---
Liam,
The only functional change I see here is the twl4030_codec_audio_data.
That should probably go into board-zoom-peripherals.c.
I'll take a deeper look in a while and fix properly there.
- Anand
arch/arm/mach-omap2/board-zoom2.c | 28 +++-------------------------
1 file changed, 3 insertions(+), 25 deletions(-)
Index: linux-2.6/arch/arm/mach-omap2/board-zoom2.c
===================================================================
--- linux-2.6.orig/arch/arm/mach-omap2/board-zoom2.c
+++ linux-2.6/arch/arm/mach-omap2/board-zoom2.c
@@ -14,7 +14,6 @@
#include <linux/platform_device.h>
#include <linux/input.h>
#include <linux/gpio.h>
-#include <linux/i2c/twl.h>
#include <asm/mach-types.h>
#include <asm/mach/arch.h>
@@ -35,11 +34,8 @@ static void __init omap_zoom2_init_irq(v
omap_gpio_init();
}
-/* EXTMUTE callback function */
-void zoom2_set_hs_extmute(int mute)
-{
- gpio_set_value(ZOOM2_HEADSET_EXTMUTE_GPIO, mute);
-}
+/* REVISIT: These audio entries can be removed once MFD code is merged */
+#if 0
static struct twl4030_madc_platform_data zoom2_madc_data = {
.irq_line = 1,
@@ -47,9 +43,6 @@ static struct twl4030_madc_platform_data
static struct twl4030_codec_audio_data zoom2_audio_data = {
.audio_mclk = 26000000,
- .ramp_delay_value = 3, /* 161 ms */
- .hs_extmute = 1,
- .set_hs_extmute = zoom2_set_hs_extmute,
};
static struct twl4030_codec_data zoom2_codec_data = {
@@ -71,24 +64,10 @@ static struct twl4030_platform_data zoom
.vmmc1 = &zoom2_vmmc1,
.vmmc2 = &zoom2_vmmc2,
.vsim = &zoom2_vsim,
-};
-static struct i2c_board_info __initdata zoom2_i2c_boardinfo[] = {
- {
- I2C_BOARD_INFO("twl4030", 0x48),
- .flags = I2C_CLIENT_WAKE,
- .irq = INT_34XX_SYS_NIRQ,
- .platform_data = &zoom2_twldata,
- },
};
-static int __init omap3_zoom2_i2c_init(void)
-{
- omap_register_i2c_bus(1, 2600, zoom2_i2c_boardinfo,
- ARRAY_SIZE(zoom2_i2c_boardinfo));
- return 0;
-}
-
+#endif
#ifdef CONFIG_OMAP_MUX
static struct omap_board_mux board_mux[] __initdata = {
@@ -156,7 +135,6 @@ static void __init omap_zoom2_init(void)
{
omap3_mux_init(board_mux, OMAP_PACKAGE_CBB);
zoom_peripherals_init();
- omap3_zoom2_i2c_init();
board_nand_init(zoom_nand_partitions,
ARRAY_SIZE(zoom_nand_partitions), ZOOM_NAND_CS);
zoom_debugboard_init();
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] omap: zoom2: fix build break due to ASoC changes
2010-10-01 20:30 [PATCH] omap: zoom2: fix build break due to ASoC changes Anand Gadiyar
@ 2010-10-01 20:36 ` Mark Brown
2010-10-01 20:43 ` Anand Gadiyar
0 siblings, 1 reply; 3+ messages in thread
From: Mark Brown @ 2010-10-01 20:36 UTC (permalink / raw)
To: Anand Gadiyar; +Cc: linux-omap, alsa-devel, Tony Lindgren, Liam Girdwood
On Sat, Oct 02, 2010 at 02:00:11AM +0530, Anand Gadiyar wrote:
> Commit f0fba2ad1b6 (ASoC: multi-component - ASoC
> Multi-Component Support) in linux-next as of 20101001
> broke omap builds with the following errors.
Acked-by: Mark Brown <brooonie@opensource.wolfsonmicro.com>
since it fixes build breakage but it looks like it'll result in reduced
functionality so a nicer fix would be good.
^ permalink raw reply [flat|nested] 3+ messages in thread
* RE: [PATCH] omap: zoom2: fix build break due to ASoC changes
2010-10-01 20:36 ` Mark Brown
@ 2010-10-01 20:43 ` Anand Gadiyar
0 siblings, 0 replies; 3+ messages in thread
From: Anand Gadiyar @ 2010-10-01 20:43 UTC (permalink / raw)
To: Mark Brown; +Cc: linux-omap, alsa-devel, Tony Lindgren, Liam Girdwood
Mark Brown wrote:
> On Sat, Oct 02, 2010 at 02:00:11AM +0530, Anand Gadiyar wrote:
> > Commit f0fba2ad1b6 (ASoC: multi-component - ASoC
> > Multi-Component Support) in linux-next as of 20101001
> > broke omap builds with the following errors.
>
> Acked-by: Mark Brown <brooonie@opensource.wolfsonmicro.com>
>
> since it fixes build breakage but it looks like it'll result in reduced
> functionality so a nicer fix would be good.
>
Looking through the archives, it appears the build break was already
addressed
by two patches from Jarkko. Sorry, I didn't see those earlier.
https://patchwork.kernel.org/patch/202322/
https://patchwork.kernel.org/patch/202332/
I've minor issues with those patches, so I'll follow up separately
on that thread.
- Anand
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2010-10-01 20:43 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-10-01 20:30 [PATCH] omap: zoom2: fix build break due to ASoC changes Anand Gadiyar
2010-10-01 20:36 ` Mark Brown
2010-10-01 20:43 ` Anand Gadiyar
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).