Skip to content

Commit bb5a027

Browse files
committed
Merge branch 'topic/asoc' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6 into for-2.6.37
2 parents 94774b2 + 45605a8 commit bb5a027

File tree

3 files changed

+13
-57
lines changed

3 files changed

+13
-57
lines changed

arch/arm/mach-omap2/board-zoom-peripherals.c

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@
2424
#include <plat/common.h>
2525
#include <plat/usb.h>
2626

27+
#include <mach/board-zoom.h>
28+
2729
#include "mux.h"
2830
#include "hsmmc.h"
2931

@@ -188,6 +190,11 @@ static int zoom_twl_gpio_setup(struct device *dev,
188190
return 0;
189191
}
190192

193+
/* EXTMUTE callback function */
194+
void zoom2_set_hs_extmute(int mute)
195+
{
196+
gpio_set_value(ZOOM2_HEADSET_EXTMUTE_GPIO, mute);
197+
}
191198

192199
static int zoom_batt_table[] = {
193200
/* 0 C*/
@@ -257,6 +264,11 @@ static struct i2c_board_info __initdata zoom_i2c_boardinfo[] = {
257264

258265
static int __init omap_i2c_init(void)
259266
{
267+
if (machine_is_omap_zoom2()) {
268+
zoom_audio_data.ramp_delay_value = 3; /* 161 ms */
269+
zoom_audio_data.hs_extmute = 1;
270+
zoom_audio_data.set_hs_extmute = zoom2_set_hs_extmute;
271+
}
260272
omap_register_i2c_bus(1, 2400, zoom_i2c_boardinfo,
261273
ARRAY_SIZE(zoom_i2c_boardinfo));
262274
omap_register_i2c_bus(2, 400, NULL, 0);

arch/arm/mach-omap2/board-zoom2.c

Lines changed: 0 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -35,61 +35,6 @@ static void __init omap_zoom2_init_irq(void)
3535
omap_gpio_init();
3636
}
3737

38-
/* EXTMUTE callback function */
39-
void zoom2_set_hs_extmute(int mute)
40-
{
41-
gpio_set_value(ZOOM2_HEADSET_EXTMUTE_GPIO, mute);
42-
}
43-
44-
static struct twl4030_madc_platform_data zoom2_madc_data = {
45-
.irq_line = 1,
46-
};
47-
48-
static struct twl4030_codec_audio_data zoom2_audio_data = {
49-
.audio_mclk = 26000000,
50-
.ramp_delay_value = 3, /* 161 ms */
51-
.hs_extmute = 1,
52-
.set_hs_extmute = zoom2_set_hs_extmute,
53-
};
54-
55-
static struct twl4030_codec_data zoom2_codec_data = {
56-
.audio_mclk = 26000000,
57-
.audio = &zoom2_audio_data,
58-
};
59-
60-
static struct twl4030_platform_data zoom2_twldata = {
61-
.irq_base = TWL4030_IRQ_BASE,
62-
.irq_end = TWL4030_IRQ_END,
63-
64-
/* platform_data for children goes here */
65-
.bci = &zoom2_bci_data,
66-
.madc = &zoom2_madc_data,
67-
.usb = &zoom2_usb_data,
68-
.gpio = &zoom2_gpio_data,
69-
.keypad = &zoom2_kp_twl4030_data,
70-
.codec = &zoom2_codec_data,
71-
.vmmc1 = &zoom2_vmmc1,
72-
.vmmc2 = &zoom2_vmmc2,
73-
.vsim = &zoom2_vsim,
74-
};
75-
76-
static struct i2c_board_info __initdata zoom2_i2c_boardinfo[] = {
77-
{
78-
I2C_BOARD_INFO("twl4030", 0x48),
79-
.flags = I2C_CLIENT_WAKE,
80-
.irq = INT_34XX_SYS_NIRQ,
81-
.platform_data = &zoom2_twldata,
82-
},
83-
};
84-
85-
static int __init omap3_zoom2_i2c_init(void)
86-
{
87-
omap_register_i2c_bus(1, 2600, zoom2_i2c_boardinfo,
88-
ARRAY_SIZE(zoom2_i2c_boardinfo));
89-
return 0;
90-
}
91-
92-
9338
#ifdef CONFIG_OMAP_MUX
9439
static struct omap_board_mux board_mux[] __initdata = {
9540
/* WLAN IRQ - GPIO 162 */
@@ -156,7 +101,6 @@ static void __init omap_zoom2_init(void)
156101
{
157102
omap3_mux_init(board_mux, OMAP_PACKAGE_CBB);
158103
zoom_peripherals_init();
159-
omap3_zoom2_i2c_init();
160104
board_nand_init(zoom_nand_partitions,
161105
ARRAY_SIZE(zoom_nand_partitions), ZOOM_NAND_CS);
162106
zoom_debugboard_init();

arch/arm/mach-omap2/devices.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@
2525
#include <plat/control.h>
2626
#include <plat/tc.h>
2727
#include <plat/board.h>
28+
#include <plat/mcbsp.h>
2829
#include <mach/gpio.h>
2930
#include <plat/mmc.h>
3031
#include <plat/dma.h>
31-
#include <plat/mcbsp.h>
3232

3333
#include "mux.h"
3434

0 commit comments

Comments
 (0)