diff options
author | Josh Boyer <jwboyer@redhat.com> | 2011-11-03 16:00:11 -0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-11-03 11:22:44 -0700 |
commit | f04c045f8ce69c22bda9d99eb927276b776135fc (patch) | |
tree | cf31bafc4e1f1fb55e472179ade50a017ab9a93e | |
parent | 70c9f18ca8f3652c7dcf715e9f0d41c399fe130d (diff) | |
download | op-kernel-dev-f04c045f8ce69c22bda9d99eb927276b776135fc.zip op-kernel-dev-f04c045f8ce69c22bda9d99eb927276b776135fc.tar.gz |
edac: Only build sb_edac on 64-bit
The sb_edac driver is marginally useful on a 32-bit kernel, and
currently has 64-bit divide compile errors when building that config.
For now, make this build on only for 64-bit kernels.
Signed-off-by: Josh Boyer <jwboyer@redhat.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | drivers/edac/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/edac/Kconfig b/drivers/edac/Kconfig index 203361e..5948a21 100644 --- a/drivers/edac/Kconfig +++ b/drivers/edac/Kconfig @@ -214,7 +214,7 @@ config EDAC_I7300 config EDAC_SBRIDGE tristate "Intel Sandy-Bridge Integrated MC" - depends on EDAC_MM_EDAC && PCI && X86 && X86_MCE_INTEL + depends on EDAC_MM_EDAC && PCI && X86_64 && X86_MCE_INTEL depends on EXPERIMENTAL help Support for error detection and correction the Intel |