diff options
| author | Matthias Fend <matthias.fend@emfend.at> | 2026-03-24 11:41:38 +0100 |
|---|---|---|
| committer | Hans Verkuil <hverkuil+cisco@kernel.org> | 2026-03-26 14:33:07 +0100 |
| commit | 1c4e20d2c2c8979096911e9b4094192d25b5e574 (patch) | |
| tree | 221f88465cb84d241cae439cd20b09249bed374f | |
| parent | 97534fccf13a89160d795b829733949e8bc2939e (diff) | |
media: i2c: ov08d10: fix some typos in comments
Fix some spelling errors in comments.
Reviewed-by: Philipp Zabel <p.zabel@pengutronix.de>
Signed-off-by: Matthias Fend <matthias.fend@emfend.at>
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Hans Verkuil <hverkuil+cisco@kernel.org>
| -rw-r--r-- | drivers/media/i2c/ov08d10.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/media/i2c/ov08d10.c b/drivers/media/i2c/ov08d10.c index 9d54170cdf7d..fd1e0769eebe 100644 --- a/drivers/media/i2c/ov08d10.c +++ b/drivers/media/i2c/ov08d10.c @@ -88,13 +88,13 @@ struct ov08d10_mode { /* Frame height in pixels */ u32 height; - /* Horizontal timining size */ + /* Horizontal timing size */ u32 hts; - /* Default vertical timining size */ + /* Default vertical timing size */ u32 vts_def; - /* Min vertical timining size */ + /* Min vertical timing size */ u32 vts_min; /* Link frequency needed for this resolution */ @@ -533,7 +533,7 @@ struct ov08d10 { /* Current mode */ const struct ov08d10_mode *cur_mode; - /* To serialize asynchronus callbacks */ + /* To serialize asynchronous callbacks */ struct mutex mutex; /* lanes index */ @@ -863,7 +863,7 @@ static int ov08d10_set_ctrl(struct v4l2_ctrl *ctrl) exposure_max); } - /* V4L2 controls values will be applied only when power is already up */ + /* V4L2 control values will be applied only when power is already up */ if (!pm_runtime_get_if_in_use(ov08d10->dev)) return 0; |
