]> pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
Code clean-up for sound/arm/omap/omap-alsa-tsc2102-mixer.c
authorEduardo Valentin <eduardo.valentin@indt.org.br>
Fri, 18 Apr 2008 08:01:03 +0000 (04:01 -0400)
committerTony Lindgren <tony@atomide.com>
Wed, 23 Apr 2008 23:55:55 +0000 (16:55 -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-tsc2102-mixer.c

index 99b1a1df849662b7f1a5574394deb9cf22991941..cf1f852057516e279eb37bf04c3ccc09b247b19a 100644 (file)
@@ -82,8 +82,10 @@ void init_playback_targets(void)
        /* Unmute */
        tsc2102_set_mute(0, 0);
 
-       mute[0] = mute[1] = 0;
-       filter[0] = filter[1] = 0;
+       mute[0] = 0;
+       mute[1] = 0;
+       filter[0] = 0;
+       filter[1] = 0;
 }
 
 /*
@@ -146,7 +148,7 @@ static int __pcm_playback_switch_get(struct snd_kcontrol *kcontrol,
 }
 
 static int __pcm_playback_switch_put(struct snd_kcontrol *kcontrol,
-               struct snd_ctl_elem_value *ucontrol) 
+               struct snd_ctl_elem_value *ucontrol)
 {
        mute[0] = (ucontrol->value.integer.value[0] == 0);      /* L */
        mute[1] = (ucontrol->value.integer.value[1] == 0);      /* R */
@@ -173,7 +175,7 @@ static int __pcm_playback_deemphasis_get(struct snd_kcontrol *kcontrol,
 }
 
 static int __pcm_playback_deemphasis_put(struct snd_kcontrol *kcontrol,
-               struct snd_ctl_elem_value *ucontrol) 
+               struct snd_ctl_elem_value *ucontrol)
 {
        filter[0] = (ucontrol->value.integer.value[0] > 0);
 
@@ -199,7 +201,7 @@ static int __pcm_playback_bassboost_get(struct snd_kcontrol *kcontrol,
 }
 
 static int __pcm_playback_bassboost_put(struct snd_kcontrol *kcontrol,
-               struct snd_ctl_elem_value *ucontrol) 
+               struct snd_ctl_elem_value *ucontrol)
 {
        filter[1] = (ucontrol->value.integer.value[0] > 0);
 
@@ -270,7 +272,7 @@ int snd_omap_mixer(struct snd_card_omap_codec *tsc2102)
        if (!tsc2102)
                return -EINVAL;
 
-       for (i = 0; i < ARRAY_SIZE(tsc2102_controls); i ++) {
+       for (i = 0; i < ARRAY_SIZE(tsc2102_controls); i++) {
                err = snd_ctl_add(tsc2102->card,
                                snd_ctl_new1(&tsc2102_controls[i],
                                tsc2102->card));