]> pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
Code clean-up for sound/arm/omap/omap-alsa-sx1-mixer.c
authorEduardo Valentin <eduardo.valentin@indt.org.br>
Fri, 18 Apr 2008 08:00:55 +0000 (04:00 -0400)
committerTony Lindgren <tony@atomide.com>
Wed, 23 Apr 2008 23:53:13 +0000 (16:53 -0700)
Removed lots of whitespaces and a few errors and
warnings reported by checkpatch.pl.

Signed-off-by: Eduardo Valentin <eduardo.valentin@indt.org.br>
Signed-off-by: Tony Lindgren <tony@atomide.com>
sound/arm/omap/omap-alsa-sx1-mixer.c

index 631b080a27694f693db46398f6e28e5c301da6c6..d0c3322378f6a343435634d0cec161d4740c83ef 100644 (file)
@@ -111,9 +111,9 @@ static int pcm_playback_target_info(struct snd_kcontrol *kcontrol,
        uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
        uinfo->count = 1;
        uinfo->value.enumerated.items = PLAYBACK_TARGET_COUNT;
-       if (uinfo->value.enumerated.item > PLAYBACK_TARGET_COUNT - 1) {
+       if (uinfo->value.enumerated.item > PLAYBACK_TARGET_COUNT - 1)
                uinfo->value.enumerated.item = PLAYBACK_TARGET_COUNT - 1;
-       }
+
        strcpy(uinfo->value.enumerated.name,
                        texts[uinfo->value.enumerated.item]);
        return 0;
@@ -210,14 +210,14 @@ static int headset_playback_volume_info(struct snd_kcontrol *kcontrol,
 }
 
 static int headset_playback_volume_get(struct snd_kcontrol *kcontrol,
-                                               struct snd_ctl_elem_value *ucontrol)
+                                       struct snd_ctl_elem_value *ucontrol)
 {
        ucontrol->value.integer.value[0]        = current_volume;
        return 0;
 }
 
 static int headset_playback_volume_put(struct snd_kcontrol *kcontrol,
-                                               struct snd_ctl_elem_value *ucontrol)
+                                       struct snd_ctl_elem_value *ucontrol)
 {
        return set_mixer_volume(ucontrol->value.integer.value[0]);
 }
@@ -233,14 +233,14 @@ static int headset_playback_switch_info(struct snd_kcontrol *kcontrol,
 }
 
 static int headset_playback_switch_get(struct snd_kcontrol *kcontrol,
-                                               struct snd_ctl_elem_value *ucontrol)
+                                       struct snd_ctl_elem_value *ucontrol)
 {
        ucontrol->value.integer.value[0] = 1;
        return 0;
 }
 
 static int headset_playback_switch_put(struct snd_kcontrol *kcontrol,
-                                               struct snd_ctl_elem_value *ucontrol)
+                                       struct snd_ctl_elem_value *ucontrol)
 {
        /* mute/unmute headset */
 #if 0
@@ -262,14 +262,14 @@ static int fmradio_playback_volume_info(struct snd_kcontrol *kcontrol,
 }
 
 static int fmradio_playback_volume_get(struct snd_kcontrol *kcontrol,
-                                               struct snd_ctl_elem_value *ucontrol)
+                                       struct snd_ctl_elem_value *ucontrol)
 {
        ucontrol->value.integer.value[0] = current_fm_volume;
        return 0;
 }
 
 static int fmradio_playback_volume_put(struct snd_kcontrol *kcontrol,
-                                               struct snd_ctl_elem_value *ucontrol)
+                                       struct snd_ctl_elem_value *ucontrol)
 {
        int ret = current_fm_volume != ucontrol->value.integer.value[0];
        int i;
@@ -291,14 +291,14 @@ static int fmradio_playback_switch_info(struct snd_kcontrol *kcontrol,
 }
 
 static int fmradio_playback_switch_get(struct snd_kcontrol *kcontrol,
-                                               struct snd_ctl_elem_value *ucontrol)
+                                       struct snd_ctl_elem_value *ucontrol)
 {
        ucontrol->value.integer.value[0] = 1;
        return 0;
 }
 
 static int fmradio_playback_switch_put(struct snd_kcontrol *kcontrol,
-                                               struct snd_ctl_elem_value *ucontrol)
+                                       struct snd_ctl_elem_value *ucontrol)
 {
        /* mute/unmute FM radio */
        if (ucontrol->value.integer.value[0])
@@ -460,7 +460,7 @@ int snd_omap_mixer(struct snd_card_omap_codec *egold)
        if (!egold)
                return -EINVAL;
 
-       for (i=0; i < ARRAY_SIZE(egold_control); i++) {
+       for (i = 0; i < ARRAY_SIZE(egold_control); i++) {
                err = snd_ctl_add(egold->card,
                                snd_ctl_new1(&egold_control[i], egold->card));
                if (err < 0)