Trivial correction: the type of numbers for Kconfig is not integer but int (I just verified because I followed the wrong docs and got a error, I looked elsewhere and they are using int, and int works for me). Please apply.
Signed-off-by: Paolo 'Blaisorblade' Giarrusso <[EMAIL PROTECTED]> --- linux-2.6.11-paolo/Documentation/kbuild/kconfig-language.txt | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff -puN Documentation/kbuild/kconfig-language.txt~doc-big-typo-fix Documentation/kbuild/kconfig-language.txt --- linux-2.6.11/Documentation/kbuild/kconfig-language.txt~doc-big-typo-fix 2005-03-10 16:35:38.000000000 +0100 +++ linux-2.6.11-paolo/Documentation/kbuild/kconfig-language.txt 2005-03-10 16:36:09.000000000 +0100 @@ -48,7 +48,7 @@ Menu attributes A menu entry can have a number of attributes. Not all of them are applicable everywhere (see syntax). -- type definition: "bool"/"tristate"/"string"/"hex"/"integer" +- type definition: "bool"/"tristate"/"string"/"hex"/"int" Every config option must have a type. There are only two basic types: tristate and string, the other types are based on these two. The type definition optionally accepts an input prompt, so these two examples @@ -100,7 +100,7 @@ applicable everywhere (see syntax). symbols. - numerical ranges: "range" <symbol> <symbol> ["if" <expr>] - This allows to limit the range of possible input values for integer + This allows to limit the range of possible input values for int and hex symbols. The user can only input a value which is larger than or equal to the first symbol and smaller than or equal to the second symbol. _ - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/