diff options
author | wangjianli <wangjianli@cdjrlc.com> | 2022-08-21 17:15:52 +0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@kernel.org> | 2022-08-29 15:32:14 +0200 |
commit | b78476917ff25f172f1388aae0eebb9c8f7c5836 (patch) | |
tree | 2ad5dba3b769a92d77ddbdd46e584052337a0833 /drivers/media/i2c/cx25840 | |
parent | media: v4l2-flash: Fix comment typo (diff) | |
download | linux-b78476917ff25f172f1388aae0eebb9c8f7c5836.tar.xz linux-b78476917ff25f172f1388aae0eebb9c8f7c5836.zip |
media: i2c/cx25840: fix repeated words in comments
Delete the redundant word 'of'.
Signed-off-by: wangjianli <wangjianli@cdjrlc.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
Diffstat (limited to 'drivers/media/i2c/cx25840')
-rw-r--r-- | drivers/media/i2c/cx25840/cx25840-ir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/i2c/cx25840/cx25840-ir.c b/drivers/media/i2c/cx25840/cx25840-ir.c index 9d7d1d149f1a..8cef9656c612 100644 --- a/drivers/media/i2c/cx25840/cx25840-ir.c +++ b/drivers/media/i2c/cx25840/cx25840-ir.c @@ -196,7 +196,7 @@ static u32 clock_divider_to_resolution(u16 divider) { /* * Resolution is the duration of 1 tick of the readable portion of - * of the pulse width counter as read from the FIFO. The two lsb's are + * the pulse width counter as read from the FIFO. The two lsb's are * not readable, hence the << 2. This function returns ns. */ return DIV_ROUND_CLOSEST((1 << 2) * ((u32) divider + 1) * 1000, |