Re: [PATCH v2] staging: media: av7110: replace C++ comments with C style comments in sp8870.c
From: Ethan Tidmore
Date: Fri Mar 13 2026 - 16:51:38 EST
On Fri Mar 13, 2026 at 11:32 AM CDT, Tomasz Unger wrote:
> Replace C++ style comments (//) with C style comments (/* */) in
> sp8870.c to conform to the kernel coding style.
>
> Signed-off-by: Tomasz Unger <tomasz.unger@xxxxxxxx>
> ---
...
> - // not documented but if we don't read 0x0D01 out here
> - // we don't get a correct data valid signal
> + /* not documented but if we don't read 0x0D01 out here */
> + /* we don't get a correct data valid signal */
This needs to be a multi-line comment:
/*
* not documented but if we don't read 0x0D01 out here
* we don't get a correct data valid signal
*/
Thanks,
ET