Re: [PATCH v2 1/4] x86: tangier: acpi: Create buffers outside of the methods

2020-05-31 Thread Bin Meng
On Mon, Jun 1, 2020 at 10:57 AM Bin Meng wrote: > > On Thu, May 28, 2020 at 5:17 PM Andy Shevchenko > wrote: > > > > Create buffers outside of the methods as ACPICA 20200214 complains about > > this: > > > > Remark 2173 - Creation of named objects within a method is > > highly in

Re: [PATCH v2 1/4] x86: tangier: acpi: Create buffers outside of the methods

2020-05-31 Thread Bin Meng
On Thu, May 28, 2020 at 5:17 PM Andy Shevchenko wrote: > > Create buffers outside of the methods as ACPICA 20200214 complains about this: > > Remark 2173 - Creation of named objects within a method is > highly inefficient, use globals or method local variables > instead > >

[PATCH v2 1/4] x86: tangier: acpi: Create buffers outside of the methods

2020-05-28 Thread Andy Shevchenko
Create buffers outside of the methods as ACPICA 20200214 complains about this: Remark 2173 - Creation of named objects within a method is highly inefficient, use globals or method local variables instead Reported-by: Bin Meng Signed-off-by: Andy Shevchenko --- v2: rebase