On Mon, 27 Feb 2023 at 15:09, Tom Rini <tr...@konsulko.com> wrote: > > We have a number of places in the code which use the following syntax: > > void func(a, b, c) > int a; /* Does a */ > something_t *b; /* Pointer to b */ > int c; /* Does c */ > { > ... > } > > Which while not what we document as our coding style, this is also code > which we have imported from other projects, and would like to re-sync > with in the future. While the biggest example of this is the zlib code, > there are other places as well. For now, we will silence this warning. > > Signed-off-by: Tom Rini <tr...@konsulko.com> > --- > Makefile | 1 + > 1 file changed, 1 insertion(+)
Reviewed-by: Simon Glass <s...@chromium.org>