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

Commit f41b6961 authored by Filipe Rosset's avatar Filipe Rosset Committed by Mauro Carvalho Chehab
Browse files

V4L/DVB (11895): bt8xx: remove always false if



Remove always false if over unsigned int variable

Signed-off-by: default avatarFilipe Rosset <rosset.filipe@gmail.com>
Signed-off-by: default avatarDouglas Schilling Landgraf <dougsland@redhat.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent ab482a6c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -4628,7 +4628,7 @@ static int __init bttv_init_module(void)
#endif
	if (gbuffers < 2 || gbuffers > VIDEO_MAX_FRAME)
		gbuffers = 2;
	if (gbufsize < 0 || gbufsize > BTTV_MAX_FBUF)
	if (gbufsize > BTTV_MAX_FBUF)
		gbufsize = BTTV_MAX_FBUF;
	gbufsize = (gbufsize + PAGE_SIZE - 1) & PAGE_MASK;
	if (bttv_verbose)