diff options
author | Takashi Iwai <tiwai@suse.de> | 2007-07-24 05:21:21 -0400 |
---|---|---|
committer | Jaroslav Kysela <perex@perex.cz> | 2007-10-16 09:57:53 -0400 |
commit | 00283886fae4005feeb84bddda6cf5da5675be4d (patch) | |
tree | 02e1533ebd7ea64214dee2240b68234992323738 /sound/pci/ice1712 | |
parent | edec7bbb22dafdab5f8eae4f049ad9d0f615abc4 (diff) |
[ALSA] ice1712 - Fix missing replacement to snd_ctl_boolean_mono_info
There were some places I forgot to replace with snd_ctl_boolean_mono_info.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Jaroslav Kysela <perex@suse.cz>
Diffstat (limited to 'sound/pci/ice1712')
-rw-r--r-- | sound/pci/ice1712/ice1712.c | 2 | ||||
-rw-r--r-- | sound/pci/ice1712/ice1712.h | 3 |
2 files changed, 1 insertions, 4 deletions
diff --git a/sound/pci/ice1712/ice1712.c b/sound/pci/ice1712/ice1712.c index cd41c7eb6c6b..caa0886d460e 100644 --- a/sound/pci/ice1712/ice1712.c +++ b/sound/pci/ice1712/ice1712.c | |||
@@ -1745,8 +1745,6 @@ static struct snd_kcontrol_new snd_ice1712_spdif_stream __devinitdata = | |||
1745 | .put = snd_ice1712_spdif_stream_put | 1745 | .put = snd_ice1712_spdif_stream_put |
1746 | }; | 1746 | }; |
1747 | 1747 | ||
1748 | #define snd_ice1712_gpio_info snd_ctl_boolean_mono_info | ||
1749 | |||
1750 | int snd_ice1712_gpio_get(struct snd_kcontrol *kcontrol, | 1748 | int snd_ice1712_gpio_get(struct snd_kcontrol *kcontrol, |
1751 | struct snd_ctl_elem_value *ucontrol) | 1749 | struct snd_ctl_elem_value *ucontrol) |
1752 | { | 1750 | { |
diff --git a/sound/pci/ice1712/ice1712.h b/sound/pci/ice1712/ice1712.h index 6ac486d9c138..d072f7b98b29 100644 --- a/sound/pci/ice1712/ice1712.h +++ b/sound/pci/ice1712/ice1712.h | |||
@@ -451,11 +451,10 @@ static inline void snd_ice1712_restore_gpio_status(struct snd_ice1712 *ice) | |||
451 | 451 | ||
452 | /* for bit controls */ | 452 | /* for bit controls */ |
453 | #define ICE1712_GPIO(xiface, xname, xindex, mask, invert, xaccess) \ | 453 | #define ICE1712_GPIO(xiface, xname, xindex, mask, invert, xaccess) \ |
454 | { .iface = xiface, .name = xname, .access = xaccess, .info = snd_ice1712_gpio_info, \ | 454 | { .iface = xiface, .name = xname, .access = xaccess, .info = snd_ctl_boolean_mono_info, \ |
455 | .get = snd_ice1712_gpio_get, .put = snd_ice1712_gpio_put, \ | 455 | .get = snd_ice1712_gpio_get, .put = snd_ice1712_gpio_put, \ |
456 | .private_value = mask | (invert << 24) } | 456 | .private_value = mask | (invert << 24) } |
457 | 457 | ||
458 | int snd_ice1712_gpio_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo); | ||
459 | int snd_ice1712_gpio_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol); | 458 | int snd_ice1712_gpio_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol); |
460 | int snd_ice1712_gpio_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol); | 459 | int snd_ice1712_gpio_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol); |
461 | 460 | ||