Message ID | 20210624184103.684831-1-ernunes@redhat.com |
---|---|
State | Accepted |
Headers | show |
Series | [1/2] sbbr: remove SSDT from mandatory list | expand |
On 2021-06-24 12:41 p.m., Erico Nunes wrote: > According to the SBBR version 1.2, section 4.2.1.4 DSDT and SSDT: > > Secondary System Description Table (SSDT), ACPI § 5.2.11.2. > > This table is optional. One or more of this table can be used to > provide additional definition blocks if necessary. > > Signed-off-by: Erico Nunes <ernunes@redhat.com> > --- > src/sbbr/acpitables/acpitables.c | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) > > diff --git a/src/sbbr/acpitables/acpitables.c b/src/sbbr/acpitables/acpitables.c > index 3a378e03..20b50c1f 100644 > --- a/src/sbbr/acpitables/acpitables.c > +++ b/src/sbbr/acpitables/acpitables.c > @@ -200,8 +200,7 @@ static const char *mandatory_acpi_tables[] = { > "RSDP", > "XSDT", > "FACP", > - "DSDT", > - "SSDT", > + "DSDT", /* SSDT is optional */ > "MADT", > "GTDT", > "DBG2", > Thanks for the clarification. Acked-by: Alex Hung <alex.hung@canonical.com>
On 6/25/21 2:41 AM, Erico Nunes wrote: > According to the SBBR version 1.2, section 4.2.1.4 DSDT and SSDT: > > Secondary System Description Table (SSDT), ACPI § 5.2.11.2. > > This table is optional. One or more of this table can be used to > provide additional definition blocks if necessary. > > Signed-off-by: Erico Nunes <ernunes@redhat.com> > --- > src/sbbr/acpitables/acpitables.c | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) > > diff --git a/src/sbbr/acpitables/acpitables.c b/src/sbbr/acpitables/acpitables.c > index 3a378e03..20b50c1f 100644 > --- a/src/sbbr/acpitables/acpitables.c > +++ b/src/sbbr/acpitables/acpitables.c > @@ -200,8 +200,7 @@ static const char *mandatory_acpi_tables[] = { > "RSDP", > "XSDT", > "FACP", > - "DSDT", > - "SSDT", > + "DSDT", /* SSDT is optional */ > "MADT", > "GTDT", > "DBG2", > Acked-by: Ivan Hu <ivan.hu@canonical.com>
diff --git a/src/sbbr/acpitables/acpitables.c b/src/sbbr/acpitables/acpitables.c index 3a378e03..20b50c1f 100644 --- a/src/sbbr/acpitables/acpitables.c +++ b/src/sbbr/acpitables/acpitables.c @@ -200,8 +200,7 @@ static const char *mandatory_acpi_tables[] = { "RSDP", "XSDT", "FACP", - "DSDT", - "SSDT", + "DSDT", /* SSDT is optional */ "MADT", "GTDT", "DBG2",
According to the SBBR version 1.2, section 4.2.1.4 DSDT and SSDT: Secondary System Description Table (SSDT), ACPI § 5.2.11.2. This table is optional. One or more of this table can be used to provide additional definition blocks if necessary. Signed-off-by: Erico Nunes <ernunes@redhat.com> --- src/sbbr/acpitables/acpitables.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)