Skip to content
  1. Mar 04, 2017
  2. Feb 21, 2017
  3. Feb 16, 2017
  4. Feb 13, 2017
  5. Feb 07, 2017
  6. Feb 02, 2017
  7. Feb 01, 2017
    • Jonathan Corbet's avatar
      docs: Convert the regulator docbook to RST · 028f2533
      Jonathan Corbet authored
      
      
      A fairly straightforward conversion to RST; the document is then added to
      the driver-api manual.
      
      Of course, this document has seen no substantive changes since 2008, so
      chances are it needs work in other areas as well.
      
      Cc: Mark Brown <broonie@kernel.org>
      Signed-off-by: default avatarJonathan Corbet <corbet@lwn.net>
      028f2533
    • Jonathan Corbet's avatar
      docs: Convert the deviceio template to RST · 8a8a602f
      Jonathan Corbet authored
      
      
      Convert deviceiobook.tmpl to RST and incorporate it into the driver API
      manual.
      
      Like the rest of our documentation, this one could use some work.  There's
      no mention of ioremap() and friends, no mention of io_read*() and friends.
      But we have nice documentation for all those folks writing new drivers that
      do port I/O :).
      
      The :c:func: notation has been left off of all the read*/write* functions.
      There's no kerneldoc comments for them anyway, so those links will never be
      live, and writing a bunch of repetitive "read a byte from I/O memory"
      comments lacks appeal.
      
      Cc: Matthew Wilcox <willy@infradead.org>
      Cc: Alan Cox <gnomes@lxorguk.ukuu.org.uk>
      Signed-off-by: default avatarJonathan Corbet <corbet@lwn.net>
      8a8a602f
  8. Jan 27, 2017
  9. Jan 14, 2017
  10. Jan 05, 2017
    • Paolo Bonzini's avatar
      kernel-doc: make highlights more homogenous for the various backends · df31175b
      Paolo Bonzini authored
      
      
      $type_struct_full and friends are only used by the restructuredText
      backend, because it needs to separate enum/struct/typedef/union from
      the name of the type.  However, $type_struct is *also* used by the rST
      backend.  This is confusing.
      
      This patch replaces $type_struct's use in the rST backend with a new
      $type_fallback; it modifies $type_struct so that it can be used in the
      rST backend; and creates regular expressions like $type_struct
      for enum/typedef/union, for use in all backends.
      
      Note that, compared to $type_*_full, in the new regexes $1 includes both
      the "kind" and the name (before, $1 was pretty much a constant).
      
      Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
      Acked-by: default avatarJani Nikula <jani.nikula@intel.com>
      Signed-off-by: default avatarJonathan Corbet <corbet@lwn.net>
      df31175b