diff options
-rw-r--r-- | arch/arm/mach-omap2/board-rx51-peripherals.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/board-rx51-peripherals.c b/arch/arm/mach-omap2/board-rx51-peripherals.c index 3d95534215d0..e350f0bf8cdc 100644 --- a/arch/arm/mach-omap2/board-rx51-peripherals.c +++ b/arch/arm/mach-omap2/board-rx51-peripherals.c | |||
@@ -32,6 +32,8 @@ | |||
32 | #include <plat/onenand.h> | 32 | #include <plat/onenand.h> |
33 | #include <plat/gpmc-smc91x.h> | 33 | #include <plat/gpmc-smc91x.h> |
34 | 34 | ||
35 | #include <sound/tlv320aic3x.h> | ||
36 | |||
35 | #include "mux.h" | 37 | #include "mux.h" |
36 | #include "hsmmc.h" | 38 | #include "hsmmc.h" |
37 | 39 | ||
@@ -707,6 +709,10 @@ static struct twl4030_platform_data rx51_twldata __initdata = { | |||
707 | .vio = &rx51_vio, | 709 | .vio = &rx51_vio, |
708 | }; | 710 | }; |
709 | 711 | ||
712 | static struct aic3x_pdata rx51_aic3x_data __initdata = { | ||
713 | .gpio_reset = 60, | ||
714 | }; | ||
715 | |||
710 | static struct i2c_board_info __initdata rx51_peripherals_i2c_board_info_1[] = { | 716 | static struct i2c_board_info __initdata rx51_peripherals_i2c_board_info_1[] = { |
711 | { | 717 | { |
712 | I2C_BOARD_INFO("twl5030", 0x48), | 718 | I2C_BOARD_INFO("twl5030", 0x48), |
@@ -719,6 +725,7 @@ static struct i2c_board_info __initdata rx51_peripherals_i2c_board_info_1[] = { | |||
719 | static struct i2c_board_info __initdata rx51_peripherals_i2c_board_info_2[] = { | 725 | static struct i2c_board_info __initdata rx51_peripherals_i2c_board_info_2[] = { |
720 | { | 726 | { |
721 | I2C_BOARD_INFO("tlv320aic3x", 0x18), | 727 | I2C_BOARD_INFO("tlv320aic3x", 0x18), |
728 | .platform_data = &rx51_aic3x_data, | ||
722 | }, | 729 | }, |
723 | }; | 730 | }; |
724 | 731 | ||