Since some people disapprove of white space cleanups mixed in regular commits
[coreboot.git] / src / cpu / intel / model_6bx / model_6bx_init.c
index a921fbd368af69401b08bfc2fbb276bc861d613a..783138ec836afec7ac8bf78c868503a22ff5e68f 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * This file is part of the coreboot project.
- * 
+ *
  * Copyright (C) 2007-2009 coresystems GmbH
  * Copyright (C) 2010 Joseph Smith <joe@settoplinux.org>
  *
@@ -44,7 +44,7 @@ static const uint32_t microcode_updates[] = {
         0x0, 0x0, 0x0, 0x0,
 };
 
-static inline void strcpy(char *dst, char *src) 
+static inline void strcpy(char *dst, char *src)
 {
        while (*src) *dst++ = *src++;
 }
@@ -69,7 +69,7 @@ static void fill_processor_name(char *processor_name)
 
        /* Skip leading spaces */
        processor_name_start = temp_processor_name;
-       while (*processor_name_start == ' ') 
+       while (*processor_name_start == ' ')
                processor_name_start++;
 
        memset(processor_name, 0, 49);
@@ -96,7 +96,7 @@ static void model_6bx_init(device_t cpu)
 
 #if CONFIG_USBDEBUG_DIRECT
        // Is this caution really needed?
-       if(!ehci_debug_addr) 
+       if(!ehci_debug_addr)
                ehci_debug_addr = get_ehci_debug();
        set_ehci_debug(0);
 #endif