On Wed, Nov 3, 2021 at 9:37 PM Tomas Vanek
<[email protected]> wrote:
>
> On 03/11/2021 18:32, Antonio Borneo wrote:
> > What about tagging v0.12.0-rc1 after jimtcl 0.81 is out?
> Sounds good.
> > Which patches already in gerrit would be valuable to review and/or
> > merge before the code freeze?
> Your checkpatch series?
I want to rework the checkpatch series to better highlight the
modifications wrt the version in kernel mainline. Today it's hard to
track such changes and realign them after a while.
Instead of commenting-out the code to remove and adding comments for
the new OpenOCD specific code, I want to try a different way:
- defining a dummy variable (actually a constant) at the beginning of
the file "my $is_openocd = 1;"
- enclose the code to be removed within "if (!$is_openocd) {...}"
- enclose the new OpenOCD specific code within "if ($is_openocd) {...}"
Then I also want to align to new checkpatch (actually not many
changes) and import the new documentation from
https://github.com/torvalds/linux/blob/master/Documentation/dev-tools/checkpatch.rst
but these can be done later.
It will take some time of mine, and I don't see it as a priority for v0.12.0.
Maybe I could address it during the code freeze.
Antonio