aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/kbuild
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.masahiro@socionext.com>2019-10-03 19:29:12 +0900
committerMasahiro Yamada <yamada.masahiro@socionext.com>2019-10-05 15:29:49 +0900
commit43496709f166aeb87ac0bdcc6f7bb2bedafb17c9 (patch)
treefa5dfdf7135df1e71e67967c9d18ddc5bbfb6c28 /Documentation/kbuild
parentscripts/setlocalversion: clear local variable to make it work for sh (diff)
downloadlinux-dev-43496709f166aeb87ac0bdcc6f7bb2bedafb17c9.tar.xz
linux-dev-43496709f166aeb87ac0bdcc6f7bb2bedafb17c9.zip
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>
Diffstat (limited to 'Documentation/kbuild')
-rw-r--r--Documentation/kbuild/modules.rst4
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.
----------------------------------------
Sometimes, an external module uses exported symbols from
- another external module. kbuild needs to have full knowledge of
+ another external module. Kbuild needs to have full knowledge of
all symbols to avoid spitting out warnings about undefined
symbols. Three solutions exist for this situation.
@@ -522,7 +522,7 @@ build.
The top-level kbuild file would then look like::
#./Kbuild (or ./Makefile):
- obj-y := foo/ bar/
+ obj-m := foo/ bar/
And executing::