mirror of https://github.com/acidanthera/audk.git
QuarkPlatformPkg/AcpiTables: Resolve iASL warnings
Resolve a few warnings from the latest iASL compilers. Cc: Kelly Steele <kelly.steele@intel.com> Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com> Reviewed-by: Kelly Steele <kelly.steele@intel.com>
This commit is contained in:
parent
5c5d8d0b20
commit
137cbff041
|
@ -1,7 +1,7 @@
|
||||||
/** @file
|
/** @file
|
||||||
Expose GPIO resources to usermode through client driver.
|
Expose GPIO resources to usermode through client driver.
|
||||||
|
|
||||||
Copyright (c) 2013-2015 Intel Corporation.
|
Copyright (c) 2013-2019 Intel Corporation.
|
||||||
|
|
||||||
SPDX-License-Identifier: BSD-2-Clause-Patent
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
||||||
|
|
||||||
|
@ -11,7 +11,7 @@ Device(GPOT)
|
||||||
{
|
{
|
||||||
Name(_HID, "INT349A")
|
Name(_HID, "INT349A")
|
||||||
Name(_CID, "INT349A")
|
Name(_CID, "INT349A")
|
||||||
Method(_CRS, 0x0, NotSerialized)
|
Method(_CRS, 0x0, Serialized)
|
||||||
{
|
{
|
||||||
Name(RBUF, ResourceTemplate()
|
Name(RBUF, ResourceTemplate()
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/** @file
|
/** @file
|
||||||
Contains root level name space objects for the platform
|
Contains root level name space objects for the platform
|
||||||
|
|
||||||
Copyright (c) 2013-2015 Intel Corporation.
|
Copyright (c) 2013-2019 Intel Corporation.
|
||||||
|
|
||||||
SPDX-License-Identifier: BSD-2-Clause-Patent
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
||||||
|
|
||||||
|
@ -50,7 +50,7 @@ DefinitionBlock (
|
||||||
"DSDT",
|
"DSDT",
|
||||||
1,
|
1,
|
||||||
"INTEL ",
|
"INTEL ",
|
||||||
"QuarkNcSocId",
|
"QuarkNcS",
|
||||||
3)
|
3)
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
|
@ -275,7 +275,7 @@ DefinitionBlock (
|
||||||
Method (_INI)
|
Method (_INI)
|
||||||
{
|
{
|
||||||
Store(LINUX, OSTP) // Set the default os is Linux
|
Store(LINUX, OSTP) // Set the default os is Linux
|
||||||
If (CondRefOf (_OSI, local0))
|
If (CondRefOf (_OSI))
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
//_OSI is supported, so it is WinXp or Win2003Server
|
//_OSI is supported, so it is WinXp or Win2003Server
|
||||||
|
|
Loading…
Reference in New Issue