Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -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);