diff options
author | Jarkko Nikula <jarkko.nikula@nokia.com> | 2008-02-28 12:34:48 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2008-02-29 11:28:17 +0100 |
commit | 338c7ed070bb1e068c3ae8ef14dc577e75d8aecc (patch) | |
tree | b85e3c0ae06ace9adbfe9274e514caf4dc549585 /sound/soc/pxa/corgi.c | |
parent | 31bffaa9435f14b35a8e23ed2005925f65ec6d9b (diff) | |
download | blackbird-obmc-linux-338c7ed070bb1e068c3ae8ef14dc577e75d8aecc.tar.gz blackbird-obmc-linux-338c7ed070bb1e068c3ae8ef14dc577e75d8aecc.zip |
[ALSA] ASoC: Fix DAPM widget function types in pxa machine drivers
Add kcontrol argument to functions since the API was changed by the commit
9af6d9562414568ecadf96aaef5b88e7e8b19821.
Signed-off-by: Jarkko Nikula <jarkko.nikula@nokia.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/soc/pxa/corgi.c')
-rw-r--r-- | sound/soc/pxa/corgi.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sound/soc/pxa/corgi.c b/sound/soc/pxa/corgi.c index 3f34e531bebf..1a70a6ac98ce 100644 --- a/sound/soc/pxa/corgi.c +++ b/sound/soc/pxa/corgi.c @@ -215,7 +215,8 @@ static int corgi_set_spk(struct snd_kcontrol *kcontrol, return 1; } -static int corgi_amp_event(struct snd_soc_dapm_widget *w, int event) +static int corgi_amp_event(struct snd_soc_dapm_widget *w, + struct snd_kcontrol *k, int event) { if (SND_SOC_DAPM_EVENT_ON(event)) set_scoop_gpio(&corgiscoop_device.dev, CORGI_SCP_APM_ON); @@ -225,7 +226,8 @@ static int corgi_amp_event(struct snd_soc_dapm_widget *w, int event) return 0; } -static int corgi_mic_event(struct snd_soc_dapm_widget *w, int event) +static int corgi_mic_event(struct snd_soc_dapm_widget *w, + struct snd_kcontrol *k, int event) { if (SND_SOC_DAPM_EVENT_ON(event)) set_scoop_gpio(&corgiscoop_device.dev, CORGI_SCP_MIC_BIAS); |