1. 06 Dec, 2016 1 commit
    • Mauro Carvalho Chehab's avatar
      Update Documentation/00-INDEX · 9e22ff43
      Mauro Carvalho Chehab authored
      Em Mon, 5 Dec 2016 14:23:01 -0700
      Jonathan Corbet <corbet@lwn.net> escreveu:
      
      > On Mon,  5 Dec 2016 09:41:40 -0200
      > Mauro Carvalho Chehab <mchehab@s-opensource.com> wrote:
      >
      > > So, in order to check it, I wrote a small script that compares the files
      > > and directories at Documentation/ with the ones at 00-INDEX.
      > >
      > > Then, I synchronized the entries, making the script happy.
      > >
      > > We might think on integrating the script with checkpatch.pl, but, as
      > > we should get rid of 00-INDEX, it probably not worth the efforts.
      >
      > I would agree with that; I don't see the point of keeping those files
      > around in the longer term.
      >
      > I've applied the set.  I do have a few quibbles with the final patch that
      > I'll send separately, but they're not something to hold this set up for.
      
      Jon,
      
      Did a patch fixing the quibbles.
      
      As it seems you didn't push yet the changeset upstream, feel free to
      just fold it with patch 5/5 if you prefer so, or to add as a separate
      patch at the end of the series.
      
      Patch enclosed.
      
      Thanks,
      Mauro
      
      [PATCH] docs: 00-INDEX: change text related to the building system
      
      Let be clearer on those files related to the build system.
      Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
      Signed-off-by: default avatarJonathan Corbet <corbet@lwn.net>
      9e22ff43
  2. 05 Dec, 2016 7 commits
  3. 01 Dec, 2016 17 commits
  4. 29 Nov, 2016 5 commits
  5. 19 Nov, 2016 6 commits
  6. 18 Nov, 2016 2 commits
  7. 16 Nov, 2016 2 commits
    • Jani Nikula's avatar
      kernel-doc: add support for one line inline struct member doc comments · 0c9aa209
      Jani Nikula authored
      kernel-doc supports documenting struct members "inline" since
      a4c6ebed ("scripts/kernel-doc Allow struct arguments documentation
      in struct body"). This requires the inline kernel-doc comments to have
      the opening and closing comment markers (/** and */ respectively) on
      lines of their own, even for short comments. For example:
      
      	/**
      	 * struct foo - struct documentation
      	 */
      	struct foo {
      		/**
      		 * @bar: member documentation
      		 */
      		int bar;
      	};
      
      Add support for one line inline comments:
      
      	/**
      	 * struct foo - struct documentation
      	 */
      	struct foo {
      		/** @bar: member documentation */
      		int bar;
      	};
      
      Note that mixing of the two in one doc comment is not allowed; either
      both comment markers must be on lines of their own, or both must be on
      the one line. This limitation keeps both the comments more uniform, and
      kernel-doc less complicated.
      
      Cc: Daniel Vetter <daniel@ffwll.ch>
      Signed-off-by: default avatarJani Nikula <jani.nikula@intel.com>
      Signed-off-by: default avatarJonathan Corbet <corbet@lwn.net>
      0c9aa209
    • Brian Norris's avatar
      docs/completion.txt: drop dangling reference to completions-design.txt · dc92726e
      Brian Norris authored
      Per the original author, the proposed document was never deemed
      necessary, and the important bits got merged into completion.txt. Let's
      just stop confusing readers by pointing at a nonexistent doc.
      Signed-off-by: default avatarBrian Norris <briannorris@chromium.org>
      Signed-off-by: default avatarJonathan Corbet <corbet@lwn.net>
      dc92726e