This is an automatic generated email to let you know that the following patch were queued at the http://git.linuxtv.org/media_tree.git tree:
Subject: edac: sb_edac: Let the driver depend on PCI_MMCONFIG Author: Hui Wang <[email protected]> Date: Mon Feb 6 04:10:59 2012 -0300 This driver needs to access PCIe Extended Configuration Space Registers (0x100~0xfff), to correctly access those registers, we need to enable PCI_MMCONFIG option. Since this option is not enabled for X86_64 by default, we let the driver depend on it to prevent users forgetting to enable this option. Signed-off-by: Hui Wang <[email protected]> Signed-off-by: Mauro Carvalho Chehab <[email protected]> drivers/edac/Kconfig | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) --- http://git.linuxtv.org/media_tree.git?a=commitdiff;h=22a5c27bec0161c70cc2d8d1730f9b14b604757d diff --git a/drivers/edac/Kconfig b/drivers/edac/Kconfig index 203361e..fdffa1b 100644 --- a/drivers/edac/Kconfig +++ b/drivers/edac/Kconfig @@ -214,8 +214,8 @@ config EDAC_I7300 config EDAC_SBRIDGE tristate "Intel Sandy-Bridge Integrated MC" - depends on EDAC_MM_EDAC && PCI && X86 && X86_MCE_INTEL - depends on EXPERIMENTAL + depends on EDAC_MM_EDAC && PCI && X86_64 && X86_MCE_INTEL + depends on PCI_MMCONFIG && EXPERIMENTAL help Support for error detection and correction the Intel Sandy Bridge Integrated Memory Controller. _______________________________________________ linuxtv-commits mailing list [email protected] http://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits
