14 May, 2016
6 commits
-
Leave a hint to folks which file to edit instead.
Signed-off-by: Jani Nikula
Signed-off-by: Jonathan Corbet -
Expect reStructuredText input and have kernel-doc produce
reStructuredText output with the new --rst option. Also add --docbook
option for completeness. If no option is given, default to
reStructuredText if the input file has ".rst" extension, DocBook
otherwise.Directives for reStructuredText use .. ! instead of just !, to make them
reStructuredText comments.Signed-off-by: Jani Nikula
Signed-off-by: Jonathan Corbet -
Cleaner code. Also fixes a bug when F or P directives didn't in fact
have space.Signed-off-by: Jani Nikula
Signed-off-by: Jonathan Corbet -
Helps follow-up work. No functional changes.
Signed-off-by: Jani Nikula
Signed-off-by: Jonathan Corbet -
Improves clarity. No functional changes.
Signed-off-by: Jani Nikula
Signed-off-by: Jonathan Corbet -
Improves clarity. No functional changes.
Signed-off-by: Jani Nikula
Signed-off-by: Jonathan Corbet
10 Jun, 2014
1 commit
-
Signed-off-by: Masahiro Yamada
Signed-off-by: Michal Marek
13 Nov, 2013
1 commit
-
When using '!Ffile function' in a docbook template, and the function no
longer exists, you get a "no structured comments found" error from the
kernel-doc processing script. It's useful to know which functions it was
looking for, so print them out in this case. Also do the same for '!Pfile
doc-section'The same error also happens when using '!Efile' when some exported
functions aren't documented (in the same file.) There's a very large
number of such functions though, so don't print the message in this case
-- right now it would give ~850 messages.Signed-off-by: Johannes Berg
Cc: Rob Landley
Cc: Randy Dunlap
Signed-off-by: Andrew Morton
Signed-off-by: Linus Torvalds
17 Jun, 2011
1 commit
-
The placement of the opening brace "{" after 'if' statements in
scripts/docproc.c is inconsistent. Most are placed on the same line as the 'if'
statement itself as per CodingStyle, but a few are not. This patch cleans up
the inconsistency. We save a few source lines and the file then uses the same
style throughout, which is nice.Signed-off-by: Jesper Juhl
Signed-off-by: Jiri Kosina
03 May, 2011
1 commit
-
Move docproc from scripts/basic to scripts so it is only built for *doc
targets instead of every time the kernel is built.