Since some people disapprove of white space cleanups mixed in regular commits
[coreboot.git] / src / lib / generic_sdram.c
index 79b501f9a4142ed528b6b6c5ed33e11055703da3..8a06252170d541a5c262ca493f2d93767c1adad5 100644 (file)
@@ -9,7 +9,7 @@ static inline void print_debug_sdram_8(const char *strval, uint32_t val)
 #if CONFIG_USE_PRINTK_IN_CAR
         printk(BIOS_DEBUG, "%s%02x\n", strval, val);
 #else
-        print_debug(strval); print_debug_hex8(val); print_debug("\r\n");
+        print_debug(strval); print_debug_hex8(val); print_debug("\n");
 #endif
 }
 
@@ -45,10 +45,10 @@ void sdram_initialize(int controllers, const struct mem_controller *ctrl)
        }
 
        /* Now that everything is setup enable the SDRAM.
-        * Some chipsets do the work for us while on others 
+        * Some chipsets do the work for us while on others
         * we need to it by hand.
         */
-       print_debug("Ram3\r\n");
+       print_debug("Ram3\n");
 
        #if RAMINIT_SYSINFO == 1
        sdram_enable(controllers, ctrl, sysinfo);
@@ -56,5 +56,5 @@ void sdram_initialize(int controllers, const struct mem_controller *ctrl)
        sdram_enable(controllers, ctrl);
        #endif
 
-       print_debug("Ram4\r\n");
+       print_debug("Ram4\n");
 }