Done with sed and God Lines. Only done for C-like code for now. Change-Id: I22fffa0eab006be2bad4d3dd776b22ad9830faef Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/40129 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
20 lines
464 B
Plaintext
20 lines
464 B
Plaintext
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/* This file is part of the coreboot project. */
|
|
|
|
Device(PCI0) {
|
|
/* Describe the AMD Northbridge */
|
|
#include "northbridge.asl"
|
|
|
|
/* Describe the AMD Fusion Controller Hub */
|
|
#include "sb_pci0_fch.asl"
|
|
}
|
|
|
|
/* Describe PCI INT[A-H] for the Southbridge */
|
|
#include "pci_int.asl"
|
|
|
|
/* Describe the devices in the Southbridge */
|
|
#include "sb_fch.asl"
|
|
|
|
/* Add GPIO library */
|
|
#include <soc/amd/common/acpi/gpio_bank_lib.asl>
|