1. 06 Jun, 2019 3 commits
  2. 04 Jun, 2019 1 commit
  3. 31 May, 2019 1 commit
  4. 30 May, 2019 9 commits
  5. 29 May, 2019 12 commits
  6. 27 May, 2019 1 commit
  7. 24 May, 2019 9 commits
  8. 23 May, 2019 4 commits
    • Jonathan Corbet's avatar
      docs: fix multiple doc build warnings in enumeration.rst · bbb30909
      Jonathan Corbet authored
      The conversion of acpi/enumeration.txt to RST included one markup error,
      leading to many warnings like:
      
        .../firmware-guide/acpi/enumeration.rst:430: WARNING: Unexpected indentation.
      
      Add the missing colon and create some peace.
      
      Fixes: c24bc66e ("Documentation: ACPI: move enumeration.txt to firmware-guide/acpi and convert to reST")
      Cc: Changbin Du <changbin.du@gmail.com>
      Signed-off-by: default avatarJonathan Corbet <corbet@lwn.net>
      bbb30909
    • Jonathan Corbet's avatar
      lib/list_sort: fix kerneldoc build error · f35a1abd
      Jonathan Corbet authored
      Commit 043b3f7b ("lib/list_sort: simplify and remove
      MAX_LIST_LENGTH_BITS") added some useful kerneldoc info, but also broke the
      docs build:
      
        ./lib/list_sort.c:128: WARNING: Definition list ends without a blank line; unexpected unindent.
        ./lib/list_sort.c:161: WARNING: Unexpected indentation.
        ./lib/list_sort.c:162: WARNING: Block quote ends without a blank line; unexpected unindent.
      
      Fix the offending literal block and make the error go away.
      
      Fixes: 043b3f7b ("lib/list_sort: simplify and remove MAX_LIST_LENGTH_BITS")
      Cc: George Spelvin <lkml@sdf.org>
      Signed-off-by: default avatarJonathan Corbet <corbet@lwn.net>
      f35a1abd
    • Jonathan Corbet's avatar
      docs: fix numaperf.rst and add it to the doc tree · 8867f610
      Jonathan Corbet authored
      Commit 13bac55e ("doc/mm: New documentation for memory performance")
      added numaperf.rst, but did not add it to the TOC tree.  There was also an
      incorrectly marked literal block leading to this warning sequence:
      
        numaperf.rst:24: WARNING: Unexpected indentation.
        numaperf.rst:24: WARNING: Inline substitution_reference start-string without end-string.
        numaperf.rst:25: WARNING: Block quote ends without a blank line; unexpected unindent.
      
      Fix the block and add the file to the document tree.
      
      Fixes: 13bac55e ("doc/mm: New documentation for memory performance")
      Cc: Keith Busch <keith.busch@intel.com>
      Reviewed-by: default avatarMike Rapoport <rppt@linux.ibm.com>
      Signed-off-by: default avatarJonathan Corbet <corbet@lwn.net>
      8867f610
    • Jonathan Corbet's avatar
      doc: Cope with the deprecation of AutoReporter · 2404dad1
      Jonathan Corbet authored
      AutoReporter is going away; recent versions of sphinx emit a warning like:
      
        Documentation/sphinx/kerneldoc.py:125:
            RemovedInSphinx20Warning: AutodocReporter is now deprecated.
            Use sphinx.util.docutils.switch_source_input() instead.
      
      Make the switch.  But switch_source_input() only showed up in 1.7, so we
      have to do ugly version checks to keep things working in older versions.
      
      Cc: stable@vger.kernel.org
      Signed-off-by: default avatarJonathan Corbet <corbet@lwn.net>
      2404dad1