Re: [PATCH v2 09/10] powerpc: Use ppc_md_progress()

2023-02-19 Thread Michael Ellerman
Joe Perches writes: > On Sat, 2023-02-18 at 10:15 +0100, Christophe Leroy wrote: >> Many places have: >> >> if (ppc.md_progress) >> ppc.md_progress(); >> >> Use ppc_md_progress() instead. >> >> Note that checkpatch complains about using function names, >> but this is not a

Re: [PATCH v2 09/10] powerpc: Use ppc_md_progress()

2023-02-18 Thread Joe Perches
On Sat, 2023-02-18 at 10:15 +0100, Christophe Leroy wrote: > Many places have: > > if (ppc.md_progress) > ppc.md_progress(); > > Use ppc_md_progress() instead. > > Note that checkpatch complains about using function names, > but this is not a function taking format strings,

[PATCH v2 09/10] powerpc: Use ppc_md_progress()

2023-02-18 Thread Christophe Leroy
Many places have: if (ppc.md_progress) ppc.md_progress(); Use ppc_md_progress() instead. Note that checkpatch complains about using function names, but this is not a function taking format strings, so we leave the function names for now. Signed-off-by: Christophe Leroy