]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
fix build bug in "x86: add PCI extended config space access for AMD Barcelona"
authorRobert Richter <robert.richter@amd.com>
Fri, 6 Jun 2008 10:01:13 +0000 (12:01 +0200)
committerIngo Molnar <mingo@elte.hu>
Tue, 10 Jun 2008 10:32:53 +0000 (12:32 +0200)
Also much less code now.

Signed-off-by: Robert Richter <robert.richter@amd.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
arch/x86/kernel/cpu/amd.c
arch/x86/kernel/cpu/amd_64.c
arch/x86/kernel/cpu/cpu.h
arch/x86/kernel/setup.c
arch/x86/kernel/setup.h [deleted file]
arch/x86/kernel/setup_64.c
include/asm-x86/mmconfig.h

index 656b40aed64748b0c530a56cc7b5f5ba505e7724..a38d54f4ff25a8e472c4f129118b4e8b031ad8c7 100644 (file)
@@ -4,10 +4,8 @@
 #include <asm/io.h>
 #include <asm/processor.h>
 #include <asm/apic.h>
-#include <asm/mmconfig.h>
 
 #include <mach_apic.h>
-#include "../setup.h"
 #include "cpu.h"
 
 /*
index 180097e9921936e61e7dfd00f6ea131e733ce602..626fc21f027db0d02d68a262bedc436b7f93d623 100644 (file)
@@ -6,6 +6,7 @@
 #include <asm/cacheflush.h>
 
 #include <mach_apic.h>
+#include "cpu.h"
 
 extern int __cpuinit get_model_name(struct cpuinfo_x86 *c);
 extern void __cpuinit display_cacheinfo(struct cpuinfo_x86 *c);
index 783691b2a7381648bbc03ccf98842b0fcad6df22..f5d5bb1b554130874d3f681d1bc7173b037d7178 100644 (file)
@@ -1,3 +1,4 @@
+#ifdef CONFIG_X86_32
 
 struct cpu_model_info {
        int vendor;
@@ -36,3 +37,7 @@ extern struct cpu_vendor_dev __x86cpuvendor_start[], __x86cpuvendor_end[];
 
 extern int get_model_name(struct cpuinfo_x86 *c);
 extern void display_cacheinfo(struct cpuinfo_x86 *c);
+
+#endif /* CONFIG_X86_32 */
+
+extern void __cpuinit amd_enable_pci_ext_cfg(struct cpuinfo_x86 *c);
index d8f1712340131597e4040d3669d1df7ffe311cc2..20e14dbef107dcafa94e16d4a9f7fb1a5569d996 100644 (file)
@@ -136,6 +136,7 @@ void __init setup_per_cpu_areas(void)
        setup_cpumask_of_cpu();
 }
 
+#endif
 #define ENABLE_CF8_EXT_CFG      (1ULL << 46)
 
 void __cpuinit amd_enable_pci_ext_cfg(struct cpuinfo_x86 *c)
@@ -149,4 +150,3 @@ void __cpuinit amd_enable_pci_ext_cfg(struct cpuinfo_x86 *c)
        set_cpu_cap(c, X86_FEATURE_PCI_EXT_CFG);
 }
 
-#endif
diff --git a/arch/x86/kernel/setup.h b/arch/x86/kernel/setup.h
deleted file mode 100644 (file)
index 66cc2c7..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
- * Internal declarations for shared x86 setup code.
- *
- * Copyright (c) 2008 Advanced Micro Devices, Inc.
- * Contributed by Robert Richter <robert.richter@amd.com>
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of version 2 of the GNU General Public
- * License as published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
- * 02111-1307 USA
- */
-
-#ifndef _ARCH_X86_KERNEL_SETUP_H
-
-extern void __cpuinit amd_enable_pci_ext_cfg(struct cpuinfo_x86 *c);
-
-#endif /* _ARCH_X86_KERNEL_SETUP_H */
index 215bd67e5b6ce4ca9f92a25a4b7c2e14e3e7cca2..25afdd80a3cfdf95c57314e6df52422c9f55cce9 100644 (file)
@@ -73,8 +73,6 @@
 #include <asm/pat.h>
 #include <asm/mmconfig.h>
 
-#include "setup.h"
-
 #include <mach_apic.h>
 #ifdef CONFIG_PARAVIRT
 #include <asm/paravirt.h>
index 691798fbee10f9eb29d87e68b242ab852a2b5420..95beda07c6fa3e4fefbdd96bf2330c10cedbf674 100644 (file)
@@ -9,10 +9,4 @@ static inline void fam10h_check_enable_mmcfg(void) { }
 static inline void check_enable_amd_mmconf_dmi(void) { }
 #endif
 
-#if defined(CONFIG_SMP) && defined(CONFIG_X86_64)
-extern void __cpuinit amd_enable_pci_ext_cfg(struct cpuinfo_x86 *c);
-#else
-static inline void amd_enable_pci_ext_cfg(struct cpuinfo_x86 *c) { }
-#endif
-
 #endif