Re: [PATCH] staging: rtl8723bs: remove unnecessary spaces in rtw_security.c
From: Ethan Tidmore
Date: Sun Mar 15 2026 - 17:57:38 EST
On Sun Mar 15, 2026 at 3:23 PM CDT, Joshua Gu wrote:
> Fix checkpatch.pl warnings about spaces after casts
>
> Signed-off-by: Joshua Gu <joshuagu789@xxxxxxxxx>
> ---
...
> - ctr_preload[14] = (unsigned char) (c / 256); /* Ctr */
> - ctr_preload[15] = (unsigned char) (c % 256);
> + ctr_preload[14] = (unsigned char)(c / 256); /* Ctr */
> + ctr_preload[15] = (unsigned char)(c % 256);
Since you're editing the line go ahead and remove that unneeded
whitespace:
ctr_preload[14] = (unsigned char)(c / 256); /* Ctr */
ctr_preload[15] = (unsigned char)(c % 256);
Thanks,
ET