[coreboot-gerrit] New patch to review for coreboot: e82bb73 AMD SB800 based boards: Use `#include <sb_cimx.h>` instead of `"sb_cimx.h"`

Paul Menzel (paulepanter@users.sourceforge.net) gerrit at coreboot.org
Sat Apr 20 01:10:36 CEST 2013


Paul Menzel (paulepanter at users.sourceforge.net) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/3118

-gerrit

commit e82bb73d59a3c907dc42a83a1e851a5a4b6a7295
Author: Paul Menzel <paulepanter at users.sourceforge.net>
Date:   Fri Apr 19 10:05:57 2013 +0200

    AMD SB800 based boards: Use `#include <sb_cimx.h>` instead of `"sb_cimx.h"`
    
    Due to
    
        $ more src/southbridge/amd/cimx/sb800/Makefile.inc
        […]
        romstage-y += cfg.c
        romstage-y += early.c
        romstage-y += smbus.c
    
        ramstage-y += cfg.c
        ramstage-y += late.c
        […]
    
    `src/southbridge/amd/cimx/sb800/` is passed with the switch `-I` to
    the compiler, where it is also going to find the header file
    `sb_cimx.h`. Therefore use `#include <sb_cimx>` everywhere, which is
    what some AMD SB800 based boards already do.
    
    The only effect is, that the compiler will not needlessly look into
    directories which do not contain the header file [1].
    
    The following command was used for the replacement.
    
        $ git grep -l sb_cimx.h src/mainboard/ | xargs sed -i 's/#include "sb_cimx.h"/#include <sb_cimx.h>/'
    
    [1] http://gcc.gnu.org/onlinedocs/cpp/Search-Path.html
    
    Change-Id: I96ab34bac1524e6c38c85dfe9d99cb6ef55e6d7c
    Signed-off-by: Paul Menzel <paulepanter at users.sourceforge.net>
---
 src/mainboard/amd/dinar/romstage.c              | 2 +-
 src/mainboard/amd/inagua/romstage.c             | 2 +-
 src/mainboard/amd/persimmon/romstage.c          | 2 +-
 src/mainboard/amd/south_station/romstage.c      | 2 +-
 src/mainboard/amd/union_station/romstage.c      | 2 +-
 src/mainboard/asrock/e350m1/get_bus_conf.c      | 2 +-
 src/mainboard/asrock/e350m1/romstage.c          | 2 +-
 src/mainboard/lippert/frontrunner-af/romstage.c | 2 +-
 src/mainboard/lippert/toucan-af/romstage.c      | 2 +-
 9 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/src/mainboard/amd/dinar/romstage.c b/src/mainboard/amd/dinar/romstage.c
index a59d142..a9bcde0 100644
--- a/src/mainboard/amd/dinar/romstage.c
+++ b/src/mainboard/amd/dinar/romstage.c
@@ -34,7 +34,7 @@
 #include "drivers/pc80/i8254.c"
 #include "drivers/pc80/i8259.c"
 #include "nb_cimx.h"
-#include "sb_cimx.h"
+#include <sb_cimx.h>
 #include "Platform.h"
 #include <arch/cpu.h>
 
diff --git a/src/mainboard/amd/inagua/romstage.c b/src/mainboard/amd/inagua/romstage.c
index a03d5a7..d46d4ab 100644
--- a/src/mainboard/amd/inagua/romstage.c
+++ b/src/mainboard/amd/inagua/romstage.c
@@ -35,7 +35,7 @@
 #include "cpu/x86/lapic/boot_cpu.c"
 #include "drivers/pc80/i8254.c"
 #include "drivers/pc80/i8259.c"
-#include "sb_cimx.h"
+#include <sb_cimx.h>
 #include "SBPLATFORM.h"
 
 void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
diff --git a/src/mainboard/amd/persimmon/romstage.c b/src/mainboard/amd/persimmon/romstage.c
index 0c8c456..eedae56 100644
--- a/src/mainboard/amd/persimmon/romstage.c
+++ b/src/mainboard/amd/persimmon/romstage.c
@@ -35,7 +35,7 @@
 #include "drivers/pc80/i8254.c"
 #include "drivers/pc80/i8259.c"
 #include <cpu/x86/cache.h>
-#include "sb_cimx.h"
+#include <sb_cimx.h>
 #include "SBPLATFORM.h"
 #include "cbmem.h"
 #include "cpu/amd/mtrr.h"
diff --git a/src/mainboard/amd/south_station/romstage.c b/src/mainboard/amd/south_station/romstage.c
index 88c6490..c273344 100644
--- a/src/mainboard/amd/south_station/romstage.c
+++ b/src/mainboard/amd/south_station/romstage.c
@@ -33,7 +33,7 @@
 #include "cpu/x86/bist.h"
 #include "superio/fintek/f81865f/f81865f_early_serial.c"
 #include "cpu/x86/lapic/boot_cpu.c"
-#include "sb_cimx.h"
+#include <sb_cimx.h>
 #include "SBPLATFORM.h"
 
 #define SERIAL_DEV PNP_DEV(0x4e, F81865F_SP1)
diff --git a/src/mainboard/amd/union_station/romstage.c b/src/mainboard/amd/union_station/romstage.c
index 4538157..9045c04 100644
--- a/src/mainboard/amd/union_station/romstage.c
+++ b/src/mainboard/amd/union_station/romstage.c
@@ -32,7 +32,7 @@
 #include "agesawrapper.h"
 #include "cpu/x86/bist.h"
 #include "cpu/x86/lapic/boot_cpu.c"
-#include "sb_cimx.h"
+#include <sb_cimx.h>
 #include "SBPLATFORM.h"
 
 #define SERIAL_DEV PNP_DEV(0x4e, F81865F_SP1)
diff --git a/src/mainboard/asrock/e350m1/get_bus_conf.c b/src/mainboard/asrock/e350m1/get_bus_conf.c
index 1419d79..cbe19d8 100644
--- a/src/mainboard/asrock/e350m1/get_bus_conf.c
+++ b/src/mainboard/asrock/e350m1/get_bus_conf.c
@@ -26,7 +26,7 @@
 #include <cpu/amd/amdfam14.h>
 #include "agesawrapper.h"
 #if CONFIG_AMD_SB_CIMX
-#include "sb_cimx.h"
+#include <sb_cimx.h>
 #endif
 
 
diff --git a/src/mainboard/asrock/e350m1/romstage.c b/src/mainboard/asrock/e350m1/romstage.c
index 79f963b..96339b9 100644
--- a/src/mainboard/asrock/e350m1/romstage.c
+++ b/src/mainboard/asrock/e350m1/romstage.c
@@ -34,7 +34,7 @@
 #include "cpu/x86/lapic/boot_cpu.c"
 #include "drivers/pc80/i8254.c"
 #include "drivers/pc80/i8259.c"
-#include "sb_cimx.h"
+#include <sb_cimx.h>
 #include "SBPLATFORM.h"
 
 void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx);
diff --git a/src/mainboard/lippert/frontrunner-af/romstage.c b/src/mainboard/lippert/frontrunner-af/romstage.c
index 0e1b134..b04b0ea 100644
--- a/src/mainboard/lippert/frontrunner-af/romstage.c
+++ b/src/mainboard/lippert/frontrunner-af/romstage.c
@@ -35,7 +35,7 @@
 #include "drivers/pc80/i8254.c"
 #include "drivers/pc80/i8259.c"
 #include <cpu/x86/cache.h>
-#include "sb_cimx.h"
+#include <sb_cimx.h>
 #include "SBPLATFORM.h"
 #include "cbmem.h"
 #include "cpu/amd/mtrr.h"
diff --git a/src/mainboard/lippert/toucan-af/romstage.c b/src/mainboard/lippert/toucan-af/romstage.c
index 043af85..b5ff31f 100644
--- a/src/mainboard/lippert/toucan-af/romstage.c
+++ b/src/mainboard/lippert/toucan-af/romstage.c
@@ -35,7 +35,7 @@
 #include "drivers/pc80/i8254.c"
 #include "drivers/pc80/i8259.c"
 #include <cpu/x86/cache.h>
-#include "sb_cimx.h"
+#include <sb_cimx.h>
 #include "SBPLATFORM.h"
 #include "cbmem.h"
 #include "cpu/amd/mtrr.h"



More information about the coreboot-gerrit mailing list