From 334328a51f8ec04e6fb4a774198c8f9db7c5ef2d Mon Sep 17 00:00:00 2001 From: Patrick Georgi Date: Thu, 16 Feb 2012 19:01:22 +0100 Subject: Avoid ../../.. paths in ASL files The current directory is always part of the search path of cpp when using #include "..." Change-Id: I74fe39e0c79835e4b9a927afcbeab21040d8ae52 Signed-off-by: Patrick Georgi Reviewed-on: http://review.coreboot.org/648 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer --- src/northbridge/intel/sch/acpi/sch.asl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/northbridge/intel/sch') diff --git a/src/northbridge/intel/sch/acpi/sch.asl b/src/northbridge/intel/sch/acpi/sch.asl index 0a11851ea0..5e0b3f85aa 100644 --- a/src/northbridge/intel/sch/acpi/sch.asl +++ b/src/northbridge/intel/sch/acpi/sch.asl @@ -19,7 +19,7 @@ * MA 02110-1301 USA */ -#include "../../../northbridge/intel/sch/acpi/hostbridge.asl" +#include "hostbridge.asl" /* PCI Device Resource Consumption */ Device (PDRC) @@ -76,10 +76,10 @@ Device (PDRC) } // PCIe graphics port 0:1.0 -#include "../../../northbridge/intel/sch/acpi/peg.asl" +#include "peg.asl" // Integrated graphics 0:2.0 -#include "../../../northbridge/intel/sch/acpi/igd.asl" +#include "igd.asl" Scope (\) { -- cgit v1.2.3