coreboot-kgpe-d16/src/soc/intel/denverton_ns
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 src: Remove unused 'include <cpu/x86/mtrr.h>' 2020-06-06 09:43:11 +00:00
include/soc soc/intel/denverton_ns: Initialize thermal configuration 2020-11-20 00:43:10 +00:00
acpi.c soc/intel/denverton_ns: Generate ACPI DMAR Table 2020-11-16 12:09:32 +00:00
chip.c cbfs: Simplify load/map API names, remove type arguments 2020-12-02 22:13:17 +00:00
chip.h soc/intel/common: add TCC activation functionality 2020-06-28 21:47:52 +00:00
cpu.c soc/intel/denverton_ns: Initialize thermal configuration 2020-11-20 00:43:10 +00:00
csme_ie_kt.c src: Remove unused '#include <stdint.h>' 2020-05-13 08:48:17 +00:00
fiamux.c
gpio.c
gpio_dnv.c
hob_display.c
hob_mem.c
Kconfig src/soc/intel/denverton_ns: Use improvement in coreboot since 4.9 2020-11-20 00:42:38 +00:00
lpc.c src: Include <arch/io.h> when appropriate 2020-10-26 06:44:40 +00:00
Makefile.inc src: Remove leading blank lines from SPDX header 2020-05-18 07:00:27 +00:00
memmap.c src: Remove unused 'include <lib.h>' 2020-05-18 07:39:17 +00:00
npk.c
pmc.c src: Include <arch/io.h> when appropriate 2020-10-26 06:44:40 +00:00
pmutil.c
reset.c
romstage.c src: Remove unused 'include <cbmem.h>' 2020-07-26 20:59:44 +00:00
sata.c
smihandler.c soc/intel/denverton_ns: Hook up SMMSTORE 2020-11-23 12:43:17 +00:00
smm.c ACPI: Replace smm_setup_structures() 2020-06-24 11:49:15 +00:00
soc_util.c
spi.c
systemagent.c soc/intel/denverton_ns: Generate ACPI DMAR Table 2020-11-16 12:09:32 +00:00
tsc_freq.c
uart.c
uart_debug.c soc/intel/denverton_ns/uart_debug: include header for uart_platform_base 2020-09-12 15:00:07 +00:00
upd_display.c
xhci.c