aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sh/Kconfig
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2013-02-21 15:05:51 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2013-02-21 15:05:51 -0500
commit06991c28f37ad68e5c03777f5c3b679b56e3dac1 (patch)
tree4be75788e21c3c644fe6d39abf47693a171cf4f8 /arch/sh/Kconfig
parent460dc1eecf37263c8e3b17685ef236f0d236facb (diff)
parent74fef7a8fd1d2bd94f925d6638bb4c3049e7c381 (diff)
Merge tag 'driver-core-3.9-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core
Pull driver core patches from Greg Kroah-Hartman: "Here is the big driver core merge for 3.9-rc1 There are two major series here, both of which touch lots of drivers all over the kernel, and will cause you some merge conflicts: - add a new function called devm_ioremap_resource() to properly be able to check return values. - remove CONFIG_EXPERIMENTAL Other than those patches, there's not much here, some minor fixes and updates" Fix up trivial conflicts * tag 'driver-core-3.9-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core: (221 commits) base: memory: fix soft/hard_offline_page permissions drivercore: Fix ordering between deferred_probe and exiting initcalls backlight: fix class_find_device() arguments TTY: mark tty_get_device call with the proper const values driver-core: constify data for class_find_device() firmware: Ignore abort check when no user-helper is used firmware: Reduce ifdef CONFIG_FW_LOADER_USER_HELPER firmware: Make user-mode helper optional firmware: Refactoring for splitting user-mode helper code Driver core: treat unregistered bus_types as having no devices watchdog: Convert to devm_ioremap_resource() thermal: Convert to devm_ioremap_resource() spi: Convert to devm_ioremap_resource() power: Convert to devm_ioremap_resource() mtd: Convert to devm_ioremap_resource() mmc: Convert to devm_ioremap_resource() mfd: Convert to devm_ioremap_resource() media: Convert to devm_ioremap_resource() iommu: Convert to devm_ioremap_resource() drm: Convert to devm_ioremap_resource() ...
Diffstat (limited to 'arch/sh/Kconfig')
-rw-r--r--arch/sh/Kconfig13
1 files changed, 6 insertions, 7 deletions
diff --git a/arch/sh/Kconfig b/arch/sh/Kconfig
index 9c833c585871..87f720037ff7 100644
--- a/arch/sh/Kconfig
+++ b/arch/sh/Kconfig
@@ -644,7 +644,7 @@ source kernel/Kconfig.hz
644 644
645config KEXEC 645config KEXEC
646 bool "kexec system call (EXPERIMENTAL)" 646 bool "kexec system call (EXPERIMENTAL)"
647 depends on SUPERH32 && EXPERIMENTAL && MMU 647 depends on SUPERH32 && MMU
648 help 648 help
649 kexec is a system call that implements the ability to shutdown your 649 kexec is a system call that implements the ability to shutdown your
650 current kernel, and to start another kernel. It is like a reboot 650 current kernel, and to start another kernel. It is like a reboot
@@ -661,7 +661,7 @@ config KEXEC
661 661
662config CRASH_DUMP 662config CRASH_DUMP
663 bool "kernel crash dumps (EXPERIMENTAL)" 663 bool "kernel crash dumps (EXPERIMENTAL)"
664 depends on SUPERH32 && EXPERIMENTAL && BROKEN_ON_SMP 664 depends on SUPERH32 && BROKEN_ON_SMP
665 help 665 help
666 Generate crash dump after being started by kexec. 666 Generate crash dump after being started by kexec.
667 This should be normally only set in special crash dump kernels 667 This should be normally only set in special crash dump kernels
@@ -675,7 +675,7 @@ config CRASH_DUMP
675 675
676config KEXEC_JUMP 676config KEXEC_JUMP
677 bool "kexec jump (EXPERIMENTAL)" 677 bool "kexec jump (EXPERIMENTAL)"
678 depends on SUPERH32 && KEXEC && HIBERNATION && EXPERIMENTAL 678 depends on SUPERH32 && KEXEC && HIBERNATION
679 help 679 help
680 Jump between original kernel and kexeced kernel and invoke 680 Jump between original kernel and kexeced kernel and invoke
681 code via KEXEC 681 code via KEXEC
@@ -709,7 +709,7 @@ config SECCOMP
709 709
710config CC_STACKPROTECTOR 710config CC_STACKPROTECTOR
711 bool "Enable -fstack-protector buffer overflow detection (EXPERIMENTAL)" 711 bool "Enable -fstack-protector buffer overflow detection (EXPERIMENTAL)"
712 depends on SUPERH32 && EXPERIMENTAL 712 depends on SUPERH32
713 help 713 help
714 This option turns on the -fstack-protector GCC feature. This 714 This option turns on the -fstack-protector GCC feature. This
715 feature puts, at the beginning of functions, a canary value on 715 feature puts, at the beginning of functions, a canary value on
@@ -760,7 +760,7 @@ config NR_CPUS
760 760
761config HOTPLUG_CPU 761config HOTPLUG_CPU
762 bool "Support for hot-pluggable CPUs (EXPERIMENTAL)" 762 bool "Support for hot-pluggable CPUs (EXPERIMENTAL)"
763 depends on SMP && HOTPLUG && EXPERIMENTAL 763 depends on SMP && HOTPLUG
764 help 764 help
765 Say Y here to experiment with turning CPUs off and on. CPUs 765 Say Y here to experiment with turning CPUs off and on. CPUs
766 can be controlled through /sys/devices/system/cpu. 766 can be controlled through /sys/devices/system/cpu.
@@ -839,7 +839,7 @@ config ENTRY_OFFSET
839 839
840config ROMIMAGE_MMCIF 840config ROMIMAGE_MMCIF
841 bool "Include MMCIF loader in romImage (EXPERIMENTAL)" 841 bool "Include MMCIF loader in romImage (EXPERIMENTAL)"
842 depends on CPU_SUBTYPE_SH7724 && EXPERIMENTAL 842 depends on CPU_SUBTYPE_SH7724
843 help 843 help
844 Say Y here to include experimental MMCIF loading code in 844 Say Y here to include experimental MMCIF loading code in
845 romImage. With this enabled it is possible to write the romImage 845 romImage. With this enabled it is possible to write the romImage
@@ -925,7 +925,6 @@ source "fs/Kconfig.binfmt"
925endmenu 925endmenu
926 926
927menu "Power management options (EXPERIMENTAL)" 927menu "Power management options (EXPERIMENTAL)"
928depends on EXPERIMENTAL
929 928
930source "kernel/power/Kconfig" 929source "kernel/power/Kconfig"
931 930