Re: [PATCH] kallsyms: add required space for unified style

From: Miguel Ojeda
Date: Thu Oct 06 2022 - 17:07:20 EST


On Thu, Oct 6, 2022 at 11:22 AM Deming Wang <wangdeming@xxxxxxxxxx> wrote:
>
> add required space before and after operators.

There are some other instances, like `i+1`, `*result=0;`, `total=0`...
that could be fixed too.

One way to find them is `clang-format -i` + `git add --patch` :)

That will also show you other different formatting issues, like a
couple `if (...) ...;` in a single line, `if(` without space, etc.

Cheers,
Miguel