diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2010-09-25 16:17:20 +0000 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2010-09-25 16:17:20 +0000 |
commit | 5df4168db81d6a113922af66034c6e32f85adb08 (patch) | |
tree | 5860f77adde8f9b70f6809215e84e0e65dff38d3 /src/mainboard/asus/a8v-e_se | |
parent | f14c9194ff6a0036f2ebec492670dd23a55493d2 (diff) |
Drop some useless "../../../" in #includes (trivial).
Build-tested using abuild.
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5844 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/asus/a8v-e_se')
-rw-r--r-- | src/mainboard/asus/a8v-e_se/acpi_tables.c | 4 | ||||
-rw-r--r-- | src/mainboard/asus/a8v-e_se/mptable.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/mainboard/asus/a8v-e_se/acpi_tables.c b/src/mainboard/asus/a8v-e_se/acpi_tables.c index 866dec1c60..1119fd8fce 100644 --- a/src/mainboard/asus/a8v-e_se/acpi_tables.c +++ b/src/mainboard/asus/a8v-e_se/acpi_tables.c @@ -28,8 +28,8 @@ #include <arch/smp/mpspec.h> #include <device/device.h> #include <device/pci_ids.h> -#include "../../../southbridge/via/vt8237r/vt8237r.h" -#include "../../../southbridge/via/k8t890/k8t890.h" +#include "southbridge/via/vt8237r/vt8237r.h" +#include "southbridge/via/k8t890/k8t890.h" extern const unsigned char AmlCode[]; diff --git a/src/mainboard/asus/a8v-e_se/mptable.c b/src/mainboard/asus/a8v-e_se/mptable.c index 568f3a3ced..d2529db6db 100644 --- a/src/mainboard/asus/a8v-e_se/mptable.c +++ b/src/mainboard/asus/a8v-e_se/mptable.c @@ -20,8 +20,8 @@ #include <string.h> #include <stdint.h> #include <arch/smp/mpspec.h> -#include "../../../southbridge/via/vt8237r/vt8237r.h" -#include "../../../southbridge/via/k8t890/k8t890.h" +#include "southbridge/via/vt8237r/vt8237r.h" +#include "southbridge/via/k8t890/k8t890.h" static void *smp_write_config_table(void *v) { |