Various license header consistency fixes (trivial).
[coreboot.git] / src / mainboard / via / epia-m / fadt.c
index 3d9873e7b6eafc22b7fc00b6e573baccd4dc201e..632dbf6df8d6310d058309b87262d4a4acdd5aaf 100644 (file)
@@ -1,12 +1,12 @@
 /*
- * ACPI - create the Fixed ACPI Description Tables (FADT)
- * (C) Copyright 2004 Nick Barker <nick.barker9@btinternet.com>
+ * This file is part of the coreboot project.
  *
+ * (C) Copyright 2004 Nick Barker <nick.barker9@btinternet.com>
  *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as
- * published by the Free Software Foundation; either version 2 of
- * the License, or (at your option) any later version.
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
- * MA 02110-1301 USA
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
+/*
+ * ACPI - create the Fixed ACPI Description Tables (FADT)
+ */
 
 #include <string.h>
 #include <arch/acpi.h>
@@ -30,9 +32,9 @@ void acpi_create_fadt(acpi_fadt_t *fadt,acpi_facs_t *facs,void *dsdt){
        memcpy(header->signature,"FACP",4);
        header->length = 244;
        header->revision = 1;
-       memcpy(header->oem_id,"LXBIOS",6);
-       memcpy(header->oem_table_id,"LXBACPI ",8);
-       memcpy(header->asl_compiler_id,"LXB",8);
+       memcpy(header->oem_id,OEM_ID,6);
+       memcpy(header->oem_table_id,"COREBOOT",8);
+       memcpy(header->asl_compiler_id,ASLC,4);
        header->asl_compiler_revision=0;
 
        fadt->firmware_ctrl=facs;