diff options
-rw-r--r-- | Documentation/kbuild/kconfig-language.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Documentation/kbuild/kconfig-language.txt b/Documentation/kbuild/kconfig-language.txt index 2fe93ca7c77c..a4bbaaf34981 100644 --- a/Documentation/kbuild/kconfig-language.txt +++ b/Documentation/kbuild/kconfig-language.txt | |||
@@ -268,7 +268,7 @@ separate list of options. | |||
268 | 268 | ||
269 | choices: | 269 | choices: |
270 | 270 | ||
271 | "choice" | 271 | "choice" [symbol] |
272 | <choice options> | 272 | <choice options> |
273 | <choice block> | 273 | <choice block> |
274 | "endchoice" | 274 | "endchoice" |
@@ -282,6 +282,10 @@ single driver can be compiled/loaded into the kernel, but all drivers | |||
282 | can be compiled as modules. | 282 | can be compiled as modules. |
283 | A choice accepts another option "optional", which allows to set the | 283 | A choice accepts another option "optional", which allows to set the |
284 | choice to 'n' and no entry needs to be selected. | 284 | choice to 'n' and no entry needs to be selected. |
285 | If no [symbol] is associated with a choice, then you can not have multiple | ||
286 | definitions of that choice. If a [symbol] is associated to the choice, | ||
287 | then you may define the same choice (ie. with the same entries) in another | ||
288 | place. | ||
285 | 289 | ||
286 | comment: | 290 | comment: |
287 | 291 | ||