diff options
author | Patrick Georgi <patrick@georgi-clan.de> | 2012-02-16 19:01:22 +0100 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2012-02-17 19:25:35 +0100 |
commit | 334328a51f8ec04e6fb4a774198c8f9db7c5ef2d (patch) | |
tree | c0606c50ed322451aa6b4feae7749e58ee3371d2 /src/northbridge | |
parent | fdcd135b9604332499303736e6fcbb9d025c893f (diff) |
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 <patrick@georgi-clan.de>
Reviewed-on: http://review.coreboot.org/648
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/northbridge')
-rw-r--r-- | src/northbridge/intel/i945/acpi/i945.asl | 8 | ||||
-rw-r--r-- | src/northbridge/intel/sch/acpi/sch.asl | 6 |
2 files changed, 7 insertions, 7 deletions
diff --git a/src/northbridge/intel/i945/acpi/i945.asl b/src/northbridge/intel/i945/acpi/i945.asl index f5f4aae9e2..47a6931c67 100644 --- a/src/northbridge/intel/i945/acpi/i945.asl +++ b/src/northbridge/intel/i945/acpi/i945.asl @@ -19,8 +19,8 @@ * MA 02110-1301 USA */ -#include "../../../northbridge/intel/i945/acpi/hostbridge.asl" -#include "../../../northbridge/intel/i945/i945.h" +#include "hostbridge.asl" +#include "../i945.h" /* PCI Device Resource Consumption */ Device (PDRC) @@ -77,10 +77,10 @@ Device (PDRC) } // PCIe graphics port 0:1.0 -#include "../../../northbridge/intel/i945/acpi/peg.asl" +#include "peg.asl" // Integrated graphics 0:2.0 -#include "../../../northbridge/intel/i945/acpi/igd.asl" +#include "igd.asl" Scope (\) { 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 (\) { |