OSDN Git Service

modpost: delete stale comment
authorRasmus Villemoes <linux@rasmusvillemoes.dk>
Thu, 22 Mar 2018 21:05:23 +0000 (22:05 +0100)
committerMasahiro Yamada <yamada.masahiro@socionext.com>
Wed, 2 May 2018 16:17:44 +0000 (01:17 +0900)
Commit 7840fea200cd ("kbuild: Fix computing srcversion for modules")
fixed the comment above parse_source_files to refer to the new source_
line, but left this one behind that could still give the impression that
drivers/net/dummy.c appears in the deps_ variable.

Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
scripts/mod/sumversion.c

index 944418d..0f6dcb4 100644 (file)
@@ -330,14 +330,7 @@ static int parse_source_files(const char *objfile, struct md4_ctx *md)
                goto out;
        }
 
-       /* There will be a line like so:
-               deps_drivers/net/dummy.o := \
-                 drivers/net/dummy.c \
-                   $(wildcard include/config/net/fastroute.h) \
-                 include/linux/module.h \
-
-          Sum all files in the same dir or subdirs.
-       */
+       /* Sum all files in the same dir or subdirs. */
        while ((line = get_next_line(&pos, file, flen)) != NULL) {
                char* p = line;