diff mbox series

[v2] media: ov5675: fix typos in comments

Message ID 1598840901-13364-1-git-send-email-bingbu.cao@intel.com
State New
Headers show
Series [v2] media: ov5675: fix typos in comments | expand

Commit Message

Cao, Bingbu Aug. 31, 2020, 2:28 a.m. UTC
This commit fix the typos in the comments that was involved by previous
commit <d960c75daf2a>.

Signed-off-by: Bingbu Cao <bingbu.cao@intel.com>
---
 drivers/media/i2c/ov5675.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/drivers/media/i2c/ov5675.c b/drivers/media/i2c/ov5675.c
index 9540ce8918f0..4343b2637078 100644
--- a/drivers/media/i2c/ov5675.c
+++ b/drivers/media/i2c/ov5675.c
@@ -689,9 +689,9 @@  static int ov5675_set_ctrl(struct v4l2_ctrl *ctrl)
 		break;
 
 	case V4L2_CID_EXPOSURE:
-		/* 4 least significant bits of expsoure are fractional part
+		/* 4 least significant bits of exposure are fractional part
 		 * val = val << 4
-		 * for ov5675, the unit of exposure is differnt from other
+		 * for ov5675, the unit of exposure is different from other
 		 * OmniVision sensors, its exposure value is twice of the
 		 * register value, the exposure should be divided by 2 before
 		 * set register, e.g. val << 3.