diff options
author | Borislav Petkov <borislav.petkov@amd.com> | 2009-10-02 15:31:48 +0200 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-10-02 15:42:19 +0200 |
commit | 0d18b2e34bd1ad8f5bd3f3a17b5e7df132e511a9 (patch) | |
tree | ec8968797976e386245fb383a5cee800b6b75140 /drivers/edac/Makefile | |
parent | 329bd4119c8a0afea95f9db6d6b402a2f2b40e84 (diff) |
x86: EDAC: carve out AMD MCE decoding logic
This converts the MCE decoding logic into a standalone config
option which can be built-in or a module, the first one being the
default for MCEs happening early on in the boot process.
This, beyond being separated in a cleaner way, also saves RAM by
making the decoding logic modular.
Signed-off-by: Borislav Petkov <borislav.petkov@amd.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Andi Kleen <andi@firstfloor.org>
LKML-Reference: <20091002133148.GD28682@aftab>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'drivers/edac/Makefile')
-rw-r--r-- | drivers/edac/Makefile | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/edac/Makefile b/drivers/edac/Makefile index 8701cd7ce4e..bc5dc232a0f 100644 --- a/drivers/edac/Makefile +++ b/drivers/edac/Makefile @@ -6,7 +6,6 @@ # GNU General Public License. # - obj-$(CONFIG_EDAC) := edac_stub.o obj-$(CONFIG_EDAC_MM_EDAC) += edac_core.o @@ -17,9 +16,7 @@ ifdef CONFIG_PCI edac_core-objs += edac_pci.o edac_pci_sysfs.o endif -ifdef CONFIG_CPU_SUP_AMD -obj-$(CONFIG_X86_MCE) += edac_mce_amd.o -endif +obj-$(CONFIG_EDAC_DECODE_MCE) += edac_mce_amd.o obj-$(CONFIG_EDAC_AMD76X) += amd76x_edac.o obj-$(CONFIG_EDAC_CPC925) += cpc925_edac.o |