Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Use menuconfig objects II - EDAC

Change Kconfig objects from "menu, config" into "menuconfig" so
that the user can disable the whole feature without having to
enter the menu first.

Signed-off-by: Jan Engelhardt <jengelh@gmx.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

Jan Engelhardt and committed by
Linus Torvalds
751cb5e5 f5920969

+4 -10
+4 -10
drivers/edac/Kconfig
··· 6 6 # $Id: Kconfig,v 1.4.2.7 2005/07/08 22:05:38 dsp_llnl Exp $ 7 7 # 8 8 9 - menu 'EDAC - error detection and reporting (RAS) (EXPERIMENTAL)' 9 + menuconfig EDAC 10 + tristate "EDAC - error detection and reporting (EXPERIMENTAL)" 10 11 depends on HAS_IOMEM 11 - 12 - config EDAC 13 - tristate "EDAC core system error reporting (EXPERIMENTAL)" 14 12 depends on X86 && EXPERIMENTAL 15 13 help 16 14 EDAC is designed to report errors in the core system. ··· 28 30 There is also a mailing list for the EDAC project, which can 29 31 be found via the sourceforge page. 30 32 33 + if EDAC 31 34 32 35 comment "Reporting subsystems" 33 - depends on EDAC 34 36 35 37 config EDAC_DEBUG 36 38 bool "Debugging" 37 - depends on EDAC 38 39 help 39 40 This turns on debugging information for the entire EDAC 40 41 sub-system. You can insert module with "debug_level=x", current ··· 42 45 43 46 config EDAC_MM_EDAC 44 47 tristate "Main Memory EDAC (Error Detection And Correction) reporting" 45 - depends on EDAC 46 48 default y 47 49 help 48 50 Some systems are able to detect and correct errors in main ··· 96 100 97 101 choice 98 102 prompt "Error detecting method" 99 - depends on EDAC 100 103 default EDAC_POLL 101 104 102 105 config EDAC_POLL 103 106 bool "Poll for errors" 104 - depends on EDAC 105 107 help 106 108 Poll the chipset periodically to detect errors. 107 109 108 110 endchoice 109 111 110 - endmenu 112 + endif # EDAC