]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
staging: bcm2835-audio: fix trailing statements
authorAbdAllah-MEZITI <abdallah.meziti.pro@gmail.com>
Fri, 10 Feb 2017 18:52:51 +0000 (19:52 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 12 Feb 2017 12:22:08 +0000 (13:22 +0100)
Trailing statements should be on next line.

Signed-off-by: AbdAllah-MEZITI <abdallah.meziti.pro@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/bcm2835-audio/bcm2835-vchiq.c

index c52ac27538982310a536973c2974dd68b9aa0140..d11f2cdd1014d0172bb1c4a1dbd7c0413443bc38 100644 (file)
@@ -563,7 +563,9 @@ int bcm2835_audio_set_ctls(struct bcm2835_chip *chip)
                        } else if (bcm2835_audio_set_ctls_chan(chip->alsa_stream[i], chip) != 0) {
                                LOG_ERR("Couldn't set the controls for stream %d\n", i);
                                ret = -1;
-                       } else LOG_DBG(" Controls set for stream %d\n", i);
+                       } else {
+                               LOG_DBG(" Controls set for stream %d\n", i);
+                       }
                }
        }
        LOG_DBG(" .. OUT ret=%d\n", ret);