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

Commit 55bf0e70 authored by Nicola Soranzo's avatar Nicola Soranzo Committed by Mauro Carvalho Chehab
Browse files

V4L/DVB (10555): em28xx: CodingStyle fixes



Coding style fixes for recent changesets in em28xx.

Signed-off-by: default avatarNicola Soranzo <nsoranzo@tiscali.it>
Signed-off-by: default avatarDouglas Schilling Landgraf <dougsland@redhat.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 2ba58894
Loading
Loading
Loading
Loading
+6 −4
Original line number Diff line number Diff line
@@ -224,10 +224,12 @@ static int em28xx_cmd(struct em28xx *dev, int cmd, int arg)

	switch (cmd) {
	case EM28XX_CAPTURE_STREAM_EN:
		if (dev->adev.capture_stream == STREAM_OFF && arg == EM28XX_START_AUDIO) {
		if (dev->adev.capture_stream == STREAM_OFF &&
		    arg == EM28XX_START_AUDIO) {
			dev->adev.capture_stream = STREAM_ON;
			em28xx_init_audio_isoc(dev);
		} else if (dev->adev.capture_stream == STREAM_ON && arg == EM28XX_STOP_AUDIO) {
		} else if (dev->adev.capture_stream == STREAM_ON &&
			   arg == EM28XX_STOP_AUDIO) {
			dev->adev.capture_stream = STREAM_OFF;
			em28xx_deinit_isoc_audio(dev);
		} else {