On Sat, Jan 30, 2021 at 11:25 AM Nicolas Bouliane <nicboul@xxxxxxxxx> wrote: > > Signed-off-by: Nicolas Bouliane <nicboul@xxxxxxxxx> The code is correct. '$$' is escaped '$', not a typo. NACK. > --- > Documentation/kbuild/modules.rst | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/Documentation/kbuild/modules.rst b/Documentation/kbuild/modules.rst > index a1f3eb7a43e2..44a18bccdd5a 100644 > --- a/Documentation/kbuild/modules.rst > +++ b/Documentation/kbuild/modules.rst > @@ -205,7 +205,7 @@ module 8123.ko, which is built from the following files:: > KDIR ?= /lib/modules/`uname -r`/build > > default: > - $(MAKE) -C $(KDIR) M=$$PWD > + $(MAKE) -C $(KDIR) M=$PWD > > # Module specific targets > genbin: > @@ -239,7 +239,7 @@ module 8123.ko, which is built from the following files:: > KDIR ?= /lib/modules/`uname -r`/build > > default: > - $(MAKE) -C $(KDIR) M=$$PWD > + $(MAKE) -C $(KDIR) M=$PWD > > # Module specific targets > genbin: > @@ -268,7 +268,7 @@ module 8123.ko, which is built from the following files:: > KDIR ?= /lib/modules/`uname -r`/build > > default: > - $(MAKE) -C $(KDIR) M=$$PWD > + $(MAKE) -C $(KDIR) M=$PWD > > # Module specific targets > genbin: > -- > 2.25.1 > -- Best Regards Masahiro Yamada