Remove some duplicate #include files (trivial).
[coreboot.git] / src / cpu / amd / model_gx2 / model_gx2_init.c
index 580b04c7bd7b95ffb9d813f9f5d24393eefcc73b..241c0f979f0dd050dc3bdf3110e7e095f739db93 100644 (file)
@@ -6,7 +6,6 @@
 #include <cpu/x86/lapic.h>
 #include <cpu/x86/cache.h>
 
-
 static void vsm_end_post_smi(void)
 {
        __asm__ volatile (
@@ -19,7 +18,7 @@ static void vsm_end_post_smi(void)
 
 static void model_gx2_init(device_t dev)
 {
-       printk_debug("model_gx2_init\n");
+       printk(BIOS_DEBUG, "model_gx2_init\n");
 
        /* Turn on caching if we haven't already */
        x86_enable_cache();
@@ -29,7 +28,7 @@ static void model_gx2_init(device_t dev)
 
        vsm_end_post_smi();
 
-       printk_debug("model_gx2_init DONE\n");
+       printk(BIOS_DEBUG, "model_gx2_init DONE\n");
 };
 
 static struct device_operations cpu_dev_ops = {