Re: [PATCH v2 3/4] powerpc/rtas: remove lock and args fields from global rtas struct

2023-02-01 Thread Andrew Donnellan
On Tue, 2023-01-24 at 08:04 -0600, Nathan Lynch wrote: > Only code internal to the RTAS subsystem needs access to the central > lock and parameter block. Remove these from the globally visible > 'rtas' struct and make them file-static in rtas.c. > > Some changed lines in rtas_call() lack

Re: [PATCH v2 3/4] powerpc/rtas: remove lock and args fields from global rtas struct

2023-01-24 Thread Laurent Dufour
On 24/01/2023 15:04:47, Nathan Lynch wrote: > Only code internal to the RTAS subsystem needs access to the central > lock and parameter block. Remove these from the globally visible > 'rtas' struct and make them file-static in rtas.c. > > Some changed lines in rtas_call() lack appropriate spacing

[PATCH v2 3/4] powerpc/rtas: remove lock and args fields from global rtas struct

2023-01-24 Thread Nathan Lynch
Only code internal to the RTAS subsystem needs access to the central lock and parameter block. Remove these from the globally visible 'rtas' struct and make them file-static in rtas.c. Some changed lines in rtas_call() lack appropriate spacing around operators and cause checkpatch errors; fix