1. 01 7月, 2019 1 次提交
  2. 06 6月, 2019 1 次提交
  3. 26 4月, 2019 2 次提交
  4. 08 2月, 2019 1 次提交
    • D
      component: Add documentation · 4d69c80e
      Daniel Vetter 提交于
      While typing these I think doing an s/component_master/aggregate/
      would be useful:
      - it's shorter :-)
      - I think component/aggregate is much more meaningful naming than
        component/puppetmaster or something like that. At least to my
        English ear "aggregate" emphasizes much more the "assemble a pile of
        things into something bigger" aspect, and there's not really much
        of a control hierarchy between aggregate and constituing components.
      
      But that's way more than a quick doc typing exercise ...
      
      Thanks to Ram for commenting on an initial draft of these docs.
      
      v2: Review from Rafael:
      - git add Documenation/driver-api/component.rst
      - lots of polish to the wording + spelling fixes.
      
      v3: Review from Russell:
      - s/framework/helper
      - clarify the documentation for component_match_add functions.
      
      v4: Remove a few superflous "This".
      Reviewed-by: NRafael J. Wysocki <rafael.j.wysocki@intel.com>
      Cc: "C, Ramalingam" <ramalingam.c@intel.com>
      Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
      Cc: Russell King <rmk+kernel@arm.linux.org.uk>
      Cc: Rafael J. Wysocki <rafael@kernel.org>
      Cc: Jaroslav Kysela <perex@perex.cz>
      Cc: Takashi Iwai <tiwai@suse.com>
      Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
      Cc: Jani Nikula <jani.nikula@linux.intel.com>
      Reviewed-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      Signed-off-by: NDaniel Vetter <daniel.vetter@intel.com>
      Link: https://patchwork.freedesktop.org/patch/msgid/20190207232759.14553-1-daniel.vetter@ffwll.ch
      4d69c80e
  5. 12 11月, 2018 1 次提交
  6. 18 10月, 2018 1 次提交
    • L
      docs-rst: Add a new directory for PCI documentation · fcc78f9c
      Logan Gunthorpe 提交于
      Add a new directory in the driver API guide for PCI-specific documentation.
      
      This is in preparation for adding a new PCI P2P DMA driver writers guide
      which will go in this directory.
      Signed-off-by: NLogan Gunthorpe <logang@deltatee.com>
      Signed-off-by: NBjorn Helgaas <bhelgaas@google.com>
      Cc: Jonathan Corbet <corbet@lwn.net>
      Cc: Mauro Carvalho Chehab <mchehab@kernel.org>
      Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
      Cc: Vinod Koul <vinod.koul@intel.com>
      Cc: Linus Walleij <linus.walleij@linaro.org>
      Cc: Logan Gunthorpe <logang@deltatee.com>
      Cc: Thierry Reding <treding@nvidia.com>
      Cc: Sanyog Kale <sanyog.r.kale@intel.com>
      Cc: Sagar Dharia <sdharia@codeaurora.org>
      fcc78f9c
  7. 06 9月, 2018 1 次提交
    • R
      FireWire: add a Documentation driver-api chapter · ea2ae0ec
      Randy Dunlap 提交于
      Add a basic Firewire/IEEE 1394 driver API chapter to the Linux
      kernel documentation.
      Signed-off-by: NRandy Dunlap <rdunlap@infradead.org>
      Cc: Stefan Richter <stefanr@s5r6.in-berlin.de>
      Cc: Takashi Sakamoto <o-takashi@sakamocchi.jp>
      Cc: linux-doc@vger.kernel.org
      Cc: linux-scsi@vger.kernel.org
      Cc: Randy Dunlap <rdunlap@infradead.org>
      Cc: Andrew Morton <akpm@linux-foundation.org>
      Cc: "James E.J. Bottomley" <jejb@linux.vnet.ibm.com>
      Cc: "Martin K. Petersen" <martin.petersen@oracle.com>
      Cc: Jonathan Corbet <corbet@lwn.net>
      Signed-off-by: NJonathan Corbet <corbet@lwn.net>
      ea2ae0ec
  8. 26 5月, 2018 1 次提交
  9. 09 5月, 2018 1 次提交
  10. 08 5月, 2018 1 次提交
  11. 21 4月, 2018 1 次提交
  12. 23 3月, 2018 1 次提交
  13. 19 12月, 2017 2 次提交
  14. 06 11月, 2017 1 次提交
  15. 14 8月, 2017 1 次提交
  16. 20 6月, 2017 1 次提交
  17. 16 5月, 2017 6 次提交
  18. 12 4月, 2017 1 次提交
  19. 03 4月, 2017 1 次提交
  20. 07 2月, 2017 1 次提交
  21. 01 2月, 2017 2 次提交
    • J
      docs: Convert the regulator docbook to RST · 028f2533
      Jonathan Corbet 提交于
      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: NJonathan Corbet <corbet@lwn.net>
      028f2533
    • J
      docs: Convert the deviceio template to RST · 8a8a602f
      Jonathan Corbet 提交于
      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: NJonathan Corbet <corbet@lwn.net>
      8a8a602f
  22. 31 1月, 2017 1 次提交
  23. 11 1月, 2017 1 次提交
  24. 05 1月, 2017 1 次提交
  25. 15 12月, 2016 1 次提交
  26. 12 12月, 2016 1 次提交
    • D
      dma-buf: Extract dma-buf.rst · 868c97a8
      Daniel Vetter 提交于
      Just prep work to polish and consolidate all the dma-buf related
      documenation.
      
      Unfortunately I didn't discover a way to both integrate this new file
      into the overall toc while keeping it at the current place. Work
      around that by moving it into the overall driver-api/index.rst.
      
      Cc: linux-doc@vger.kernel.org
      Cc: Jonathan Corbet <corbet@lwn.net>
      Cc: Sumit Semwal <sumit.semwal@linaro.org>
      Signed-off-by: NDaniel Vetter <daniel.vetter@intel.com>
      Signed-off-by: NJonathan Corbet <corbet@lwn.net>
      868c97a8
  27. 06 12月, 2016 1 次提交
  28. 30 11月, 2016 1 次提交
  29. 17 11月, 2016 1 次提交
  30. 27 10月, 2016 1 次提交
  31. 22 10月, 2016 1 次提交
  32. 06 9月, 2016 1 次提交