Remove inline from FAM10 CPU initialization functions.
[coreboot.git] / src / cpu / amd / model_10xxx / fidvid.c
index dac53f880606149474ab29cc5e5f19343e6145e0..23a5642867e9170e5ee31ca0522c4b2e92cdb1d2 100644 (file)
 // if we are tight of CAR stack, disable it
 #define FAM10_SET_FIDVID_STORE_AP_APICID_AT_FIRST 1
 
-static inline void print_debug_fv(const char *str, u32 val)
+static void print_debug_fv(const char *str, u32 val)
 {
 #if FAM10_SET_FIDVID_DEBUG == 1
                printk_debug("%s%x\n", str, val);
 #endif
 }
 
-static inline void print_debug_fv_8(const char *str, u8 val)
+static void print_debug_fv_8(const char *str, u8 val)
 {
 #if FAM10_SET_FIDVID_DEBUG == 1
                printk_debug("%s%02x\n", str, val);
 #endif
 }
 
-static inline void print_debug_fv_64(const char *str, u32 val, u32 val2)
+static void print_debug_fv_64(const char *str, u32 val, u32 val2)
 {
 #if FAM10_SET_FIDVID_DEBUG == 1
                printk_debug("%s%x%x\n", str, val, val2);