Re: Re: [PATCH v7 7/9] acpi: Put table-setup code in its own function

2020-04-27 Thread Bin Meng
Hi Wolfgang, On Mon, Apr 27, 2020 at 2:36 PM Wolfgang Wallner wrote: > > Hi Bin, Simon, > > -"Simon Glass" schrieb: ----- > > Betreff: Re: [PATCH v7 7/9] acpi: Put table-setup code in its own function > > > > Hi Bin, > > > > On Thu, 2

Antwort: Re: [PATCH v7 7/9] acpi: Put table-setup code in its own function

2020-04-27 Thread Wolfgang Wallner
Hi Bin, Simon, -"Simon Glass" schrieb: - > Betreff: Re: [PATCH v7 7/9] acpi: Put table-setup code in its own function > > Hi Bin, > > On Thu, 23 Apr 2020 at 03:38, Bin Meng wrote: > > > > Hi Simon, Wolfgang, > > > > On Mon, Apr 20, 2

Re: [PATCH v7 7/9] acpi: Put table-setup code in its own function

2020-04-26 Thread Simon Glass
Hi Bin, On Thu, 23 Apr 2020 at 03:38, Bin Meng wrote: > > Hi Simon, Wolfgang, > > On Mon, Apr 20, 2020 at 4:37 AM Simon Glass wrote: > > > > We always write three basic tables to ACPI at the start. Move this into > > its own function, along with acpi_fill_header(), so we can write a test > >

Re: [PATCH v7 7/9] acpi: Put table-setup code in its own function

2020-04-23 Thread Bin Meng
Hi Simon, Wolfgang, On Mon, Apr 20, 2020 at 4:37 AM Simon Glass wrote: > > We always write three basic tables to ACPI at the start. Move this into > its own function, along with acpi_fill_header(), so we can write a test > for this code. > > Signed-off-by: Simon Glass I see Wolfgang gave a RB

[PATCH v7 7/9] acpi: Put table-setup code in its own function

2020-04-19 Thread Simon Glass
We always write three basic tables to ACPI at the start. Move this into its own function, along with acpi_fill_header(), so we can write a test for this code. Signed-off-by: Simon Glass --- Changes in v7: None Changes in v5: None Changes in v4: - Put back cast on table_compute_checksum()