On Tue, 17 Feb 2015 17:42:00 +0100 "Michael S. Tsirkin" <m...@redhat.com> wrote:
> On Mon, Feb 09, 2015 at 10:53:28AM +0000, Igor Mammedov wrote: > > it replaces prebuilt SSDT table header template copying/patching > > with AML API > > > > Signed-off-by: Igor Mammedov <imamm...@redhat.com> > > I note that this changed the SSDT signature in random ways, > for example, it used to be named BXPCSSDT, now it's BXPC. > > Pls keep using build_header, this problem will go away then. [...] > > + /* Init SSDT Definition Block */ > > + ssdt = aml_def_block("SSDT", 1, ACPI_BUILD_APPNAME6, > > + ACPI_BUILD_APPNAME4, 1, I've missed that build_header() composes oem_table_id implicitly by merging table signature and ACPI_BUILD_APPNAME4. following should fix issue: - ACPI_BUILD_APPNAME4, 1, + "BXPCSSDT", 1, > > + ACPI_BUILD_APPNAME4_HEX, 1);