diff mbox

SoC Camera: ov6650: minor cleanups

Message ID 201011021714.37544.jkrzyszt@tis.icnet.pl (mailing list archive)
State Accepted
Headers show

Commit Message

Janusz Krzysztofik Nov. 2, 2010, 4:14 p.m. UTC
None
diff mbox

Patch

--- linux-2.6.37-rc1/drivers/media/video/ov6650.c.orig	2010-11-01 22:41:59.000000000 +0100
+++ linux-2.6.37-rc1/drivers/media/video/ov6650.c	2010-11-02 16:56:49.000000000 +0100
@@ -754,7 +754,7 @@  static int ov6650_g_fmt(struct v4l2_subd
 
 static bool is_unscaled_ok(int width, int height, struct v4l2_rect *rect)
 {
-	return (width > rect->width >> 1 || height > rect->height >> 1);
+	return width > rect->width >> 1 || height > rect->height >> 1;
 }
 
 static u8 to_clkrc(struct v4l2_fract *timeperframe,
@@ -840,8 +840,6 @@  static int ov6650_s_fmt(struct v4l2_subd
 		coma_mask |= COMA_BW | COMA_BYTE_SWAP | COMA_WORD_SWAP;
 		coma_set |= COMA_RAW_RGB | COMA_RGB;
 		break;
-	case 0:
-		break;
 	default:
 		dev_err(&client->dev, "Pixel format not handled: 0x%x\n", code);
 		return -EINVAL;