Commit d54b1bda authored by AbdAllah-MEZITI's avatar AbdAllah-MEZITI Committed by Greg Kroah-Hartman

staging: bcm2835-audio: fix trailing statements

Trailing statements should be on next line.
Signed-off-by: default avatarAbdAllah-MEZITI <abdallah.meziti.pro@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent cdefc236
...@@ -563,7 +563,9 @@ int bcm2835_audio_set_ctls(struct bcm2835_chip *chip) ...@@ -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) { } 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); LOG_ERR("Couldn't set the controls for stream %d\n", i);
ret = -1; 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); LOG_DBG(" .. OUT ret=%d\n", ret);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment