diff options
author | Andrew Morton | 2005-12-12 09:37:41 +0100 |
---|---|---|
committer | Linus Torvalds | 2005-12-12 17:57:46 +0100 |
commit | 0de502aa44aae5712a18d471818d6c785e07c92e (patch) | |
tree | 95435fe88ec7b43d9de0583ba00ed4f4e023589d /drivers/char/Kconfig | |
parent | [PATCH] ACPI: fix sleeping whilst atomic warnings on resume (diff) | |
download | kernel-qcow2-linux-0de502aa44aae5712a18d471818d6c785e07c92e.tar.gz kernel-qcow2-linux-0de502aa44aae5712a18d471818d6c785e07c92e.tar.xz kernel-qcow2-linux-0de502aa44aae5712a18d471818d6c785e07c92e.zip |
[PATCH] raw driver: Kconfig fix
CONFIG_MAX_RAW_DEVS should appear immediately after CONFIG_RAW_DRIVER.
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/char/Kconfig')
-rw-r--r-- | drivers/char/Kconfig | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/drivers/char/Kconfig b/drivers/char/Kconfig index 970f70d498f4..b46a72d782d6 100644 --- a/drivers/char/Kconfig +++ b/drivers/char/Kconfig @@ -943,6 +943,15 @@ config RAW_DRIVER Applications should simply open the device (eg /dev/hda1) with the O_DIRECT flag. +config MAX_RAW_DEVS + int "Maximum number of RAW devices to support (1-8192)" + depends on RAW_DRIVER + default "256" + help + The maximum number of RAW devices that are supported. + Default is 256. Increase this number in case you need lots of + raw devices. + config HPET bool "HPET - High Precision Event Timer" if (X86 || IA64) default n @@ -974,15 +983,6 @@ config HPET_MMAP exposed to the user. If this applies to your hardware, say N here. -config MAX_RAW_DEVS - int "Maximum number of RAW devices to support (1-8192)" - depends on RAW_DRIVER - default "256" - help - The maximum number of RAW devices that are supported. - Default is 256. Increase this number in case you need lots of - raw devices. - config HANGCHECK_TIMER tristate "Hangcheck timer" depends on X86 || IA64 || PPC64 || ARCH_S390 |