diff options
author | Mikhail Rudenko <mike.rudenko@gmail.com> | 2024-04-17 00:45:11 +0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@kernel.org> | 2024-04-26 12:20:10 +0200 |
commit | 61198ad4b3b0144f1138b4d96173c685ad41cde9 (patch) | |
tree | 81569944c7f95d6996216225091fc570652be0a4 /drivers | |
parent | media: i2c: ov4689: Sort register definitions by address (diff) | |
download | linux-61198ad4b3b0144f1138b4d96173c685ad41cde9.tar.xz linux-61198ad4b3b0144f1138b4d96173c685ad41cde9.zip |
media: i2c: ov4689: Fix typo in a comment
Fix a spelling error in a comment.
Signed-off-by: Mikhail Rudenko <mike.rudenko@gmail.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/media/i2c/ov4689.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/i2c/ov4689.c b/drivers/media/i2c/ov4689.c index c4d4afd38906..f826571f8f68 100644 --- a/drivers/media/i2c/ov4689.c +++ b/drivers/media/i2c/ov4689.c @@ -692,7 +692,7 @@ static int ov4689_set_ctrl(struct v4l2_ctrl *ctrl) switch (ctrl->id) { case V4L2_CID_EXPOSURE: - /* 4 least significant bits of expsoure are fractional part */ + /* 4 least significant bits of exposure are fractional part */ ret = ov4689_write_reg(ov4689->client, OV4689_REG_EXPOSURE, OV4689_REG_VALUE_24BIT, ctrl->val << 4); break; |