aboutsummaryrefslogtreecommitdiff
path: root/src/arch/ppc/boot
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/ppc/boot')
-rw-r--r--src/arch/ppc/boot/Config.lb2
-rw-r--r--src/arch/ppc/boot/coreboot_table.c (renamed from src/arch/ppc/boot/linuxbios_table.c)4
-rw-r--r--src/arch/ppc/boot/coreboot_table.h (renamed from src/arch/ppc/boot/linuxbios_table.h)2
-rw-r--r--src/arch/ppc/boot/tables.c4
4 files changed, 6 insertions, 6 deletions
diff --git a/src/arch/ppc/boot/Config.lb b/src/arch/ppc/boot/Config.lb
index 284406c175..cac76ed3af 100644
--- a/src/arch/ppc/boot/Config.lb
+++ b/src/arch/ppc/boot/Config.lb
@@ -1,3 +1,3 @@
object boot.o
object tables.o
-object linuxbios_table.o
+object coreboot_table.o
diff --git a/src/arch/ppc/boot/linuxbios_table.c b/src/arch/ppc/boot/coreboot_table.c
index 2758934e2e..ea6b683dbc 100644
--- a/src/arch/ppc/boot/linuxbios_table.c
+++ b/src/arch/ppc/boot/coreboot_table.c
@@ -1,7 +1,7 @@
#include <console/console.h>
#include <ip_checksum.h>
-#include <boot/linuxbios_tables.h>
-#include "linuxbios_table.h"
+#include <boot/coreboot_tables.h>
+#include "coreboot_table.h"
#include <string.h>
#include <version.h>
#include <device/device.h>
diff --git a/src/arch/ppc/boot/linuxbios_table.h b/src/arch/ppc/boot/coreboot_table.h
index 2f200912f6..2645dd5890 100644
--- a/src/arch/ppc/boot/linuxbios_table.h
+++ b/src/arch/ppc/boot/coreboot_table.h
@@ -1,7 +1,7 @@
#ifndef COREBOOT_TABLE_H
#define COREBOOT_TABLE_H
-#include <boot/linuxbios_tables.h>
+#include <boot/coreboot_tables.h>
struct mem_range;
diff --git a/src/arch/ppc/boot/tables.c b/src/arch/ppc/boot/tables.c
index a9e1e8eb0f..00cc057277 100644
--- a/src/arch/ppc/boot/tables.c
+++ b/src/arch/ppc/boot/tables.c
@@ -1,8 +1,8 @@
#include <console/console.h>
#include <cpu/cpu.h>
#include <boot/tables.h>
-#include <boot/linuxbios_tables.h>
-#include "linuxbios_table.h"
+#include <boot/coreboot_tables.h>
+#include "coreboot_table.h"
struct lb_memory *
write_tables(void)