diff options
author | Rasmus Villemoes <linux@rasmusvillemoes.dk> | 2018-03-22 17:05:23 -0400 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-05-02 12:17:44 -0400 |
commit | 9fc347678dde73abd75bce81d5dd82c4f4505184 (patch) | |
tree | 8ce64155fe5a8ae89b26409b6ae1a4a62a1b3ef4 /scripts | |
parent | 6da6c0db5316275015e8cc2959f12a17584aeb64 (diff) |
modpost: delete stale comment
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>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/mod/sumversion.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/scripts/mod/sumversion.c b/scripts/mod/sumversion.c index 944418da9fe3..0f6dcb4011a8 100644 --- a/scripts/mod/sumversion.c +++ b/scripts/mod/sumversion.c | |||
@@ -330,14 +330,7 @@ static int parse_source_files(const char *objfile, struct md4_ctx *md) | |||
330 | goto out; | 330 | goto out; |
331 | } | 331 | } |
332 | 332 | ||
333 | /* There will be a line like so: | 333 | /* Sum all files in the same dir or subdirs. */ |
334 | deps_drivers/net/dummy.o := \ | ||
335 | drivers/net/dummy.c \ | ||
336 | $(wildcard include/config/net/fastroute.h) \ | ||
337 | include/linux/module.h \ | ||
338 | |||
339 | Sum all files in the same dir or subdirs. | ||
340 | */ | ||
341 | while ((line = get_next_line(&pos, file, flen)) != NULL) { | 334 | while ((line = get_next_line(&pos, file, flen)) != NULL) { |
342 | char* p = line; | 335 | char* p = line; |
343 | 336 | ||