staging: bcm2835-audio: fix trailing statements

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>
This commit is contained in:
AbdAllah-MEZITI 2017-02-10 19:52:51 +01:00 committed by Greg Kroah-Hartman
parent cdefc236ef
commit d54b1bdaa3

View 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);