diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-10-03 06:29:12 -0400 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-10-05 02:29:49 -0400 |
commit | 43496709f166aeb87ac0bdcc6f7bb2bedafb17c9 (patch) | |
tree | fa5dfdf7135df1e71e67967c9d18ddc5bbfb6c28 | |
parent | 7a82e3fa28f174ba23c9faca544c65986e3025f1 (diff) |
kbuild: two minor updates for Documentation/kbuild/modules.rst
Capitalize the first word in the sentence.
Use obj-m instead of obj-y. obj-y still works, but we have no built-in
objects in external module builds. So, obj-m is better IMHO.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
-rw-r--r-- | Documentation/kbuild/modules.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/kbuild/modules.rst b/Documentation/kbuild/modules.rst index 33a17121d11d..774a998dcf37 100644 --- a/Documentation/kbuild/modules.rst +++ b/Documentation/kbuild/modules.rst | |||
@@ -502,7 +502,7 @@ build. | |||
502 | ---------------------------------------- | 502 | ---------------------------------------- |
503 | 503 | ||
504 | Sometimes, an external module uses exported symbols from | 504 | Sometimes, an external module uses exported symbols from |
505 | another external module. kbuild needs to have full knowledge of | 505 | another external module. Kbuild needs to have full knowledge of |
506 | all symbols to avoid spitting out warnings about undefined | 506 | all symbols to avoid spitting out warnings about undefined |
507 | symbols. Three solutions exist for this situation. | 507 | symbols. Three solutions exist for this situation. |
508 | 508 | ||
@@ -522,7 +522,7 @@ build. | |||
522 | The top-level kbuild file would then look like:: | 522 | The top-level kbuild file would then look like:: |
523 | 523 | ||
524 | #./Kbuild (or ./Makefile): | 524 | #./Kbuild (or ./Makefile): |
525 | obj-y := foo/ bar/ | 525 | obj-m := foo/ bar/ |
526 | 526 | ||
527 | And executing:: | 527 | And executing:: |
528 | 528 | ||