Commit bc8aacec authored by Dan Carpenter's avatar Dan Carpenter Committed by Mauro Carvalho Chehab
Browse files

[media] av7110: fix confusing indenting



The else statement here is not aligned with the correct if statement.
I think the code works as intended and it's just the indenting which is
wrong.  Also kernel style says we should use curly braces here so I have
added those.

Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarHans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: default avatarMauro Carvalho Chehab <m.chehab@samsung.com>
parent 691903f9
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -958,9 +958,11 @@ static unsigned int dvb_video_poll(struct file *file, poll_table *wait)
		if (av7110->playing) {
			if (FREE_COND)
				mask |= (POLLOUT | POLLWRNORM);
			} else /* if not playing: may play if asked for */
		} else {
			/* if not playing: may play if asked for */
			mask |= (POLLOUT | POLLWRNORM);
		}
	}

	return mask;
}