summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Ian King <colin.i.king@gmail.com>2025-08-01 19:49:26 +0300
committerHans Verkuil <hverkuil+cisco@kernel.org>2025-08-29 12:04:02 +0300
commit32d40a571c2dc9009b3be047f66180dc9837e7a1 (patch)
tree9f65278f196153dbda04802b8df9e6db65db2794
parenta8513f6a2c8c0f4109dc7bf2b4dfda646ed4a8de (diff)
downloadlinux-32d40a571c2dc9009b3be047f66180dc9837e7a1.tar.xz
media: b2c2: Remove space before newline
There is an extraneous space before a newline in a dprintk message. Remove the space. Signed-off-by: Colin Ian King <colin.i.king@gmail.com> Signed-off-by: Hans Verkuil <hverkuil+cisco@kernel.org>
-rw-r--r--drivers/media/common/b2c2/flexcop-sram.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/common/b2c2/flexcop-sram.c b/drivers/media/common/b2c2/flexcop-sram.c
index d97962eb0112..dba03769f263 100644
--- a/drivers/media/common/b2c2/flexcop-sram.c
+++ b/drivers/media/common/b2c2/flexcop-sram.c
@@ -352,7 +352,7 @@ static int flexcop_sram_detect(struct flexcop_device *fc)
sram_set_size(adapter, 0x10000);
sram_init(adapter);
write_reg_dw(adapter, 0x208, tmp);
- dprintk("%s: SRAM detection failed. Set to 32K \n", __func__);
+ dprintk("%s: SRAM detection failed. Set to 32K\n", __func__);
return 0;
}