ARM: Tegra: Add to tegra_wm8903_platform_data
authorStephen Warren <swarren@nvidia.com>
Tue, 12 Apr 2011 17:29:01 +0000 (11:29 -0600)
committerMark Brown <broonie@opensource.wolfsonmicro.com>
Mon, 18 Apr 2011 16:55:58 +0000 (17:55 +0100)
Seaboard derivate Kaen has a GPIO to mute the headphone output. Add a field
to tegra_wm8903_platform_data so the board files can pass the GPIO number
for that to the ASoC machine driver.

Also, initialize this new field to a "not present" value for Harmony.

Signed-off-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
arch/arm/mach-tegra/board-harmony.c
arch/arm/mach-tegra/include/mach/tegra_wm8903_pdata.h

index 987c5e46d58173549b5139636b52069f3989bacc..30e18bc60647b35e78bc914703de41af0ecc8e44 100644 (file)
@@ -70,6 +70,7 @@ static struct platform_device debug_uart = {
 static struct tegra_wm8903_platform_data harmony_audio_pdata = {
        .gpio_spkr_en           = TEGRA_GPIO_SPKR_EN,
        .gpio_hp_det            = TEGRA_GPIO_HP_DET,
+       .gpio_hp_mute           = -1,
        .gpio_int_mic_en        = TEGRA_GPIO_INT_MIC_EN,
        .gpio_ext_mic_en        = TEGRA_GPIO_EXT_MIC_EN,
 };
index c34bd5eb204e30c83937e4c9df82d593d361ce92..9d293344a7ff52b4a71d489fcbebd3ca48da0bb0 100644 (file)
@@ -17,6 +17,7 @@
 struct tegra_wm8903_platform_data {
        int gpio_spkr_en;
        int gpio_hp_det;
+       int gpio_hp_mute;
        int gpio_int_mic_en;
        int gpio_ext_mic_en;
 };