* [PATCH 00/10] Fix documentation warnings at linux-next
@ 2021-01-14 7:53 Mauro Carvalho Chehab
2021-01-14 7:53 ` [PATCH 05/10] docs: fpga: dfl.rst: Fix a couple building issues Mauro Carvalho Chehab
0 siblings, 1 reply; 3+ messages in thread
From: Mauro Carvalho Chehab @ 2021-01-14 7:53 UTC (permalink / raw)
To: Linux Doc Mailing List
Cc: Mauro Carvalho Chehab, linux-kernel, Jonathan Corbet, Chao Yu,
Daniel Vetter, David Airlie, Felipe Balbi, Harry Wei, Ingo Molnar,
Jaegeuk Kim, Mauro Carvalho Chehab, Moritz Fischer,
Peter Zijlstra, Tom Rix, Will Deacon, Wu Hao, amd-gfx, dri-devel,
kvm, linux-f2fs-devel, linux-fpga, linux-media, linux-usb
This series fixes the documentation warnings found at next-20210114.
Most of the changes here are trivial.
While those patches could be merged via the docs tree during
the next merge window, It sounds better to have those patches
merged directly via each maintainer's tree, where the new
warnings were introduced.
Regards,
Mauro
Mauro Carvalho Chehab (10):
doc/zh_CN: fix Sphinx errors
ABI: sysfs-fs-f2fs: fix a table identation
KVM: x86: hyper-v: add a blank line to remove building warnings
ABI: sysfs-firmware-sgi_uv
docs: fpga: dfl.rst: Fix a couple building issues
drm: amd: amdgpu_dm.h: fix a wrong kernel-doc markup
dwc3: document gadget_max_speed
doc: zh_CN/mips: fix doc cross-references
media: v4l2-subdev.rst: fix a missing whitespace
seqlock: kernel-doc: fix a prototype
Documentation/ABI/testing/sysfs-firmware-sgi_uv | 1 +
Documentation/ABI/testing/sysfs-fs-f2fs | 3 ++-
Documentation/driver-api/media/v4l2-subdev.rst | 2 +-
Documentation/fpga/dfl.rst | 4 ++--
Documentation/translations/zh_CN/mips/booting.rst | 2 +-
Documentation/translations/zh_CN/mips/features.rst | 2 +-
Documentation/translations/zh_CN/mips/index.rst | 2 +-
Documentation/translations/zh_CN/mips/ingenic-tcu.rst | 6 +++---
Documentation/virt/kvm/api.rst | 1 +
drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.h | 2 +-
drivers/usb/dwc3/core.h | 1 +
include/linux/seqlock.h | 2 +-
12 files changed, 16 insertions(+), 12 deletions(-)
--
2.29.2
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH 05/10] docs: fpga: dfl.rst: Fix a couple building issues
2021-01-14 7:53 [PATCH 00/10] Fix documentation warnings at linux-next Mauro Carvalho Chehab
@ 2021-01-14 7:53 ` Mauro Carvalho Chehab
2021-01-14 14:56 ` Tom Rix
0 siblings, 1 reply; 3+ messages in thread
From: Mauro Carvalho Chehab @ 2021-01-14 7:53 UTC (permalink / raw)
To: Jonathan Corbet, Moritz Fischer, Wu Hao
Cc: Mauro Carvalho Chehab, Linux Doc Mailing List, Tom Rix,
linux-fpga, linux-kernel
A title markup length is smaller than required;
A literal block is not marked as such.
This fixes the warnings below:
.../Documentation/fpga/dfl.rst:505: WARNING: Title underline too short.
Location of DFLs on a PCI Device
===========================
.../Documentation/fpga/dfl.rst:523: WARNING: Unexpected indentation.
.../Documentation/fpga/dfl.rst:523: WARNING: Blank line required after table.
.../Documentation/fpga/dfl.rst:524: WARNING: Block quote ends without a blank line; unexpected unindent.
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
---
Documentation/fpga/dfl.rst | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Documentation/fpga/dfl.rst b/Documentation/fpga/dfl.rst
index ea8cefc18bdb..716a3d705046 100644
--- a/Documentation/fpga/dfl.rst
+++ b/Documentation/fpga/dfl.rst
@@ -502,7 +502,7 @@ FME Partial Reconfiguration Sub Feature driver (see drivers/fpga/dfl-fme-pr.c)
could be a reference.
Location of DFLs on a PCI Device
-===========================
+================================
The original method for finding a DFL on a PCI device assumed the start of the
first DFL to offset 0 of bar 0. If the first node of the DFL is an FME,
then further DFLs in the port(s) are specified in FME header registers.
@@ -513,7 +513,7 @@ VSEC ID of 0x43 for this purpose. The vendor specific
data begins with a 4 byte vendor specific register for the number of DFLs followed 4 byte
Offset/BIR vendor specific registers for each DFL. Bits 2:0 of Offset/BIR register
indicates the BAR, and bits 31:3 form the 8 byte aligned offset where bits 2:0 are
-zero.
+zero::
+----------------------------+
|31 Number of DFLS 0|
--
2.29.2
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 05/10] docs: fpga: dfl.rst: Fix a couple building issues
2021-01-14 7:53 ` [PATCH 05/10] docs: fpga: dfl.rst: Fix a couple building issues Mauro Carvalho Chehab
@ 2021-01-14 14:56 ` Tom Rix
0 siblings, 0 replies; 3+ messages in thread
From: Tom Rix @ 2021-01-14 14:56 UTC (permalink / raw)
To: Mauro Carvalho Chehab, Jonathan Corbet, Moritz Fischer, Wu Hao,
Lukas Bulwahn
Cc: Linux Doc Mailing List, linux-fpga, linux-kernel
On 1/13/21 11:53 PM, Mauro Carvalho Chehab wrote:
> A title markup length is smaller than required;
> A literal block is not marked as such.
>
> This fixes the warnings below:
>
> .../Documentation/fpga/dfl.rst:505: WARNING: Title underline too short.
>
> Location of DFLs on a PCI Device
> ===========================
> .../Documentation/fpga/dfl.rst:523: WARNING: Unexpected indentation.
> .../Documentation/fpga/dfl.rst:523: WARNING: Blank line required after table.
> .../Documentation/fpga/dfl.rst:524: WARNING: Block quote ends without a blank line; unexpected unindent.
>
> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Lukas made an earlier change here
https://lore.kernel.org/linux-fpga/alpine.DEB.2.22.394.2101111016480.2457315@rhweight-WRK1/
Tom
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2021-01-14 14:58 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-01-14 7:53 [PATCH 00/10] Fix documentation warnings at linux-next Mauro Carvalho Chehab
2021-01-14 7:53 ` [PATCH 05/10] docs: fpga: dfl.rst: Fix a couple building issues Mauro Carvalho Chehab
2021-01-14 14:56 ` Tom Rix
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).