coreboot-kgpe-d16/src/soc/intel/apollolake
Elyes HAOUAS 48a6c018bc src: Remove redundant use of ACPI offset(0)
IASL version 20180927 and greater, detects Unnecessary/redundant uses of
the Offset() operator within a Field Unit list.
It then sends a remark "^ Unnecessary/redundant use of Offset"

example:
    OperationRegion (OPR1, SystemMemory, 0x100, 0x100)
    Field (OPR1)
    {
        Offset (0),     // Never needed
        FLD1, 32,
        Offset (4),     // Redundant, offset is already 4 (bytes)
        FLD2, 8,
        Offset (64),    // OK use of Offset.
        FLD3, 16,
    }

We will have those remarks:
dsdt.asl     14:         Offset (0),
Remark   2158 -                 ^ Unnecessary/redundant use of Offset operator

dsdt.asl     16:         Offset (4),
Remark   2158 -                 ^ Unnecessary/redundant use of Offset operator

Change-Id: I260a79ef77025b4befbccc21f5999f89d90c1154
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/43283
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com>
Reviewed-by: Jason Glenesk <jason.glenesk@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
2020-12-03 00:05:52 +00:00
..
acpi src: Remove redundant use of ACPI offset(0) 2020-12-03 00:05:52 +00:00
bootblock soc/intel/apollolake: Rename SOC_INTEL_GLK symbol 2020-09-09 10:34:32 +00:00
include/soc soc/intel: deduplicate ACPI timer emulation 2020-10-28 21:28:19 +00:00
acpi.c soc/intel/apollolake: use P2SB function to generate DMAR IOAPIC 2020-11-20 10:18:25 +00:00
car.c src: Remove unused 'include <cpu/x86/msr.h>' 2020-07-14 16:14:09 +00:00
chip.c soc/intel: Configure PAVP at compile-time 2020-10-12 23:11:04 +00:00
chip.h soc/intel/*/chip.h: Use uint32_t for tcc_offset 2020-09-27 22:45:20 +00:00
cpu.c {cpu,soc}/intel: replace AES-NI locking by common implemenation call 2020-10-21 12:34:28 +00:00
cse.c src/soc/intel: Drop unneeded empty lines 2020-09-21 16:15:25 +00:00
elog.c elog: rename ELOG_WAKE_SOURCE_GPIO to ELOG_WAKE_SOURCE_GPE 2020-08-18 15:57:40 +00:00
fspcar.c treewide: Remove "this file is part of" lines 2020-05-11 17:11:40 +00:00
glk_page_map.txt src: capitalize 'RAM' 2020-02-24 12:56:03 +00:00
gpio_apl.c treewide: Remove "this file is part of" lines 2020-05-11 17:11:40 +00:00
gpio_glk.c src/soc/intel: Drop unneeded empty lines 2020-09-21 16:15:25 +00:00
graphics.c soc/intel/apl: Add panel power and backlight configuration 2020-09-06 21:41:33 +00:00
gspi.c treewide: Remove "this file is part of" lines 2020-05-11 17:11:40 +00:00
heci.c Revert "soc/intel: Refactor do_global_reset() function" 2020-09-22 05:13:39 +00:00
i2c.c treewide: Remove "this file is part of" lines 2020-05-11 17:11:40 +00:00
Kconfig soc/intel/block/pmc: Only include the PCI driver when it is not hidden 2020-11-22 22:25:03 +00:00
lpc.c soc/intel/apollolake: Rename SOC_INTEL_GLK symbol 2020-09-09 10:34:32 +00:00
Makefile.inc soc/intel: deduplicate ACPI timer emulation 2020-10-28 21:28:19 +00:00
meminit.c soc/intel/apollolake: Rename SOC_INTEL_GLK symbol 2020-09-09 10:34:32 +00:00
meminit_util_apl.c treewide: Remove "this file is part of" lines 2020-05-11 17:11:40 +00:00
meminit_util_glk.c treewide: Remove "this file is part of" lines 2020-05-11 17:11:40 +00:00
mmap_boot.c src: Remove unused '#include <cbfs.h>' 2020-06-02 07:42:56 +00:00
nhlt.c treewide: Remove "this file is part of" lines 2020-05-11 17:11:40 +00:00
pdpt.c treewide: Replace BSD-3-Clause and ISC headers with SPDX headers 2020-05-11 17:12:16 +00:00
pmc.c treewide: Remove "this file is part of" lines 2020-05-11 17:11:40 +00:00
pmutil.c soc/intel: deduplicate ACPI timer emulation 2020-10-28 21:28:19 +00:00
pnpconfig.c treewide: Remove "this file is part of" lines 2020-05-11 17:11:40 +00:00
pt.c treewide: Replace BSD-3-Clause and ISC headers with SPDX headers 2020-05-11 17:12:16 +00:00
report_platform.c {nb,soc}/intel: Use get_current_microcode_rev() for ucode version 2020-08-05 15:36:38 +00:00
reset.c soc/intel: Use of common reset code block 2020-11-02 10:43:53 +00:00
romstage.c soc/intel: rename get_prmrr_size 2020-09-21 15:51:01 +00:00
sd.c treewide: Remove "this file is part of" lines 2020-05-11 17:11:40 +00:00
smihandler.c treewide: Remove "this file is part of" lines 2020-05-11 17:11:40 +00:00
spi.c treewide: Remove "this file is part of" lines 2020-05-11 17:11:40 +00:00
systemagent.c soc/intel/common: Improve Type16 SMBIOS tables 2020-05-28 06:26:53 +00:00
uart.c soc/intel/apollolake: Rename SOC_INTEL_GLK symbol 2020-09-09 10:34:32 +00:00
xdci.c treewide: Remove "this file is part of" lines 2020-05-11 17:11:40 +00:00
xhci.c soc/intel/apollolake: Rename SOC_INTEL_GLK symbol 2020-09-09 10:34:32 +00:00