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>
This commit is contained in:
Colin Ian King
2025-08-29 11:04:02 +02:00
committed by Hans Verkuil
parent a8513f6a2c
commit 32d40a571c
+1 -1
View File
@@ -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;
}