diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2018-01-10 18:07:26 +0200 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2018-01-30 14:29:07 +0800 |
commit | 3ffb33d6362b947d77ca31e8181a4954c4b7ad42 (patch) | |
tree | efa3c5d0cb31515287173dd06fc54eba9ad90b6e /arch | |
parent | 368e86d9836aa044f2afb233e0445c8e4040b179 (diff) | |
download | u-boot-3ffb33d6362b947d77ca31e8181a4954c4b7ad42.zip u-boot-3ffb33d6362b947d77ca31e8181a4954c4b7ad42.tar.gz u-boot-3ffb33d6362b947d77ca31e8181a4954c4b7ad42.tar.bz2 |
x86: tangier: Make _CRS for BTH0 Serialized to avoid warning
ASL compiler warns:
ASL board/intel/edison/dsdt.asl
board/intel/edison/dsdt.asl.tmp 238: Method (_CRS, 0, NotSerialized)
Remark 2120 - Control Method should be made Serialized ^ (due to creation of named objects within)
Do as suggested by ASL compiler.
Fixes: 5d8c4ebd95e2 ("x86: tangier: Add Bluetooth to ACPI table")
Reported-by: Ferry Toth <fntoth@gmail.com>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/include/asm/arch-tangier/acpi/southcluster.asl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/include/asm/arch-tangier/acpi/southcluster.asl b/arch/x86/include/asm/arch-tangier/acpi/southcluster.asl index 2b3b897..5289b14 100644 --- a/arch/x86/include/asm/arch-tangier/acpi/southcluster.asl +++ b/arch/x86/include/asm/arch-tangier/acpi/southcluster.asl @@ -284,7 +284,7 @@ Device (PCI0) Return (STA_VISIBLE) } - Method (_CRS, 0, NotSerialized) + Method (_CRS, 0, Serialized) { Name (RBUF, ResourceTemplate () { |