OSDN Git Service

ALSA: msnd: add some missing curly braces
authorDan Carpenter <dan.carpenter@oracle.com>
Thu, 5 Mar 2015 11:26:37 +0000 (14:26 +0300)
committerTakashi Iwai <tiwai@suse.de>
Thu, 5 Mar 2015 12:02:10 +0000 (13:02 +0100)
There were some curly braces intended here.

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/isa/msnd/msnd_pinnacle_mixer.c

index 17e49a0..b408540 100644 (file)
@@ -306,11 +306,12 @@ int snd_msndmix_new(struct snd_card *card)
        spin_lock_init(&chip->mixer_lock);
        strcpy(card->mixername, "MSND Pinnacle Mixer");
 
-       for (idx = 0; idx < ARRAY_SIZE(snd_msnd_controls); idx++)
+       for (idx = 0; idx < ARRAY_SIZE(snd_msnd_controls); idx++) {
                err = snd_ctl_add(card,
                                  snd_ctl_new1(snd_msnd_controls + idx, chip));
                if (err < 0)
                        return err;
+       }
 
        return 0;
 }