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

Commit 9f95a0bf authored by Nickolay's avatar Nickolay Committed by Linus Torvalds
Browse files

[PATCH] v4l: 667: remove some if 0 which doesn t have any sense



- Remove some #if 0 which doesn't have any sense

Signed-off-by: default avatarNickolay V. Shmyrev <nshmyrev@yandex.ru>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@brturbo.com.br>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 17a05ef3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1256,9 +1256,9 @@ int cx88_do_ioctl(struct inode *inode, struct file *file, int radio,
{
	int err;

	dprintk( 1, "CORE IOCTL: 0x%x\n", cmd );
	if (video_debug > 1)
		cx88_print_ioctl(core->name,cmd);
	dprintk( 1, "CORE IOCTL: 0x%x\n", cmd );

	switch (cmd) {
	/* ---------- tv norms ---------- */
+2 −2
Original line number Diff line number Diff line
@@ -1798,9 +1798,9 @@ static int video_do_ioctl(struct inode *inode, struct file *file,
			crop->c.height = b->top - crop->c.top + b->height;

		if (crop->c.left < b->left)
			crop->c.top = b->left;
			crop->c.left = b->left;
		if (crop->c.left > b->left + b->width)
			crop->c.top = b->left + b->width;
			crop->c.left = b->left + b->width;
		if (crop->c.width > b->left - crop->c.left + b->width)
			crop->c.width = b->left - crop->c.left + b->width;