diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2007-01-30 08:23:40 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-01-30 11:39:21 -0500 |
commit | b20c8453a7d6e8d63c0f05ba3e38d9428c8091b1 (patch) | |
tree | 432e9c2654d55a0f262d8170a9dd87cabdff6a12 | |
parent | 774ba59c950926abd27421fa146f1916de89e6f6 (diff) |
[PATCH] fix indentation-related breakage in Kconfig.i386
Kconfig recognizes the end of help text by receding indentation depth.
Recent patch had broken HOST_VMSPLIT_... choice in arch/um/Kconfig.i386 -
all alternatives are interpreted as part of help text now.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | arch/um/Kconfig.i386 | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/arch/um/Kconfig.i386 b/arch/um/Kconfig.i386 index 77558a88a2fe..d6cffb27fff8 100644 --- a/arch/um/Kconfig.i386 +++ b/arch/um/Kconfig.i386 | |||
@@ -36,14 +36,14 @@ choice | |||
36 | 36 | ||
37 | So, if you do not know what to do here, say 'Default split'. | 37 | So, if you do not know what to do here, say 'Default split'. |
38 | 38 | ||
39 | config HOST_VMSPLIT_3G | 39 | config HOST_VMSPLIT_3G |
40 | bool "Default split (3G/1G user/kernel host split)" | 40 | bool "Default split (3G/1G user/kernel host split)" |
41 | config HOST_VMSPLIT_3G_OPT | 41 | config HOST_VMSPLIT_3G_OPT |
42 | bool "3G/1G user/kernel host split (for full 1G low memory)" | 42 | bool "3G/1G user/kernel host split (for full 1G low memory)" |
43 | config HOST_VMSPLIT_2G | 43 | config HOST_VMSPLIT_2G |
44 | bool "2G/2G user/kernel host split" | 44 | bool "2G/2G user/kernel host split" |
45 | config HOST_VMSPLIT_1G | 45 | config HOST_VMSPLIT_1G |
46 | bool "1G/3G user/kernel host split" | 46 | bool "1G/3G user/kernel host split" |
47 | endchoice | 47 | endchoice |
48 | 48 | ||
49 | config TOP_ADDR | 49 | config TOP_ADDR |