Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Rasmus Villemoes and committed by
Masahiro Yamada
9fc34767 6da6c0db

+1 -8
+1 -8
scripts/mod/sumversion.c
··· 330 330 goto out; 331 331 } 332 332 333 - /* There will be a line like so: 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 - */ 333 + /* Sum all files in the same dir or subdirs. */ 341 334 while ((line = get_next_line(&pos, file, flen)) != NULL) { 342 335 char* p = line; 343 336