* [PATCH 00/18] Fix some build warnings/errors with Sphinx
@ 2018-05-07 9:35 Mauro Carvalho Chehab
2018-05-07 9:35 ` [PATCH 02/18] docs: fix location of request_firmware & friends Mauro Carvalho Chehab
2018-05-08 16:13 ` [PATCH 00/18] Fix some build warnings/errors with Sphinx Jonathan Corbet
0 siblings, 2 replies; 7+ messages in thread
From: Mauro Carvalho Chehab @ 2018-05-07 9:35 UTC (permalink / raw)
To: Linux Doc Mailing List
Cc: linux-fbdev, Jonathan Corbet, linux-iio, Greg Kroah-Hartman,
linux-pm, linux-wireless, linux-kernel, dri-devel,
Mauro Carvalho Chehab, Luis R. Rodriguez, linux-mtd, linux-crypto,
Mauro Carvalho Chehab, linux-can
I decided to give a try with Sphinx last stable version
(1.17.4), and noticed several issues. The worse one was
with the networking book: a non-standard footnote there
with [*] instead of a number causes it to break PDF building.
So, I took some spare time to address some warnings all over
the tree, and moved a few text documents to a book. I with
I had more time to move the other ones and to solve other
warnings.
Mauro Carvalho Chehab (18):
docs: can.rst: fix a footnote reference
docs: fix location of request_firmware & friends
docs: */index.rst: Add newer documents to their respective index.rst
docs: admin-guide: add bcache documentation
docs: core-api: add cachetlb documentation
docs: core-api: add cgroup-v2 documentation
docs: core-api: add circular-buffers documentation
docs: driver-api: add clk documentation
net: mac80211.h: fix a bad comment line
rcu: rcupdate.h: get rid of Sphinx warnings at rcu_pointer_handoff()
docs: crypto_engine.rst: Fix two parse warnings
time: timer.c: adjust a kernel-doc comment
wait: wait.h: Get rid of a kernel-doc/Sphinx warnings
fbdev: modedb.c: fix a kernel-doc markup
iio: iio.h: use nested struct support on kernel-doc markup
mtd: rawnand.h: use nested union kernel-doc markups
docs: uio-howto.rst: use a code block to solve a warning
w1: w1_io.c: fix a kernel-doc warning
Documentation/00-INDEX | 10 -------
.../{bcache.txt => admin-guide/bcache.rst} | 0
.../cgroup-v2.rst} | 0
Documentation/admin-guide/index.rst | 2 ++
.../admin-guide/kernel-parameters.txt | 2 +-
.../{cachetlb.txt => core-api/cachetlb.rst} | 0
.../circular-buffers.rst} | 0
Documentation/core-api/index.rst | 2 ++
Documentation/crypto/crypto_engine.rst | 8 +++---
Documentation/crypto/index.rst | 1 +
Documentation/dell_rbu.txt | 4 +--
Documentation/{clk.txt => driver-api/clk.rst} | 0
.../firmware/fallback-mechanisms.rst | 2 +-
.../driver-api/firmware/request_firmware.rst | 17 +++++++-----
Documentation/driver-api/index.rst | 2 ++
Documentation/driver-api/infrastructure.rst | 2 +-
Documentation/driver-api/uio-howto.rst | 3 ++-
Documentation/memory-barriers.txt | 4 +--
Documentation/networking/can.rst | 4 +--
.../power/suspend-and-cpuhotplug.txt | 2 +-
Documentation/process/index.rst | 1 +
Documentation/security/index.rst | 2 ++
.../translations/ko_KR/memory-barriers.txt | 4 +--
drivers/video/fbdev/core/modedb.c | 22 ++++++++--------
drivers/w1/w1_io.c | 1 +
include/linux/iio/iio.h | 24 ++++++++---------
include/linux/mtd/rawnand.h | 26 +++++++++++++------
include/linux/rcupdate.h | 5 ++--
include/linux/wait.h | 2 +-
include/net/mac80211.h | 2 +-
kernel/time/timer.c | 14 +++++-----
31 files changed, 93 insertions(+), 75 deletions(-)
rename Documentation/{bcache.txt => admin-guide/bcache.rst} (100%)
rename Documentation/{cgroup-v2.txt => admin-guide/cgroup-v2.rst} (100%)
rename Documentation/{cachetlb.txt => core-api/cachetlb.rst} (100%)
rename Documentation/{circular-buffers.txt => core-api/circular-buffers.rst} (100%)
rename Documentation/{clk.txt => driver-api/clk.rst} (100%)
--
2.17.0
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply [flat|nested] 7+ messages in thread* [PATCH 02/18] docs: fix location of request_firmware & friends 2018-05-07 9:35 [PATCH 00/18] Fix some build warnings/errors with Sphinx Mauro Carvalho Chehab @ 2018-05-07 9:35 ` Mauro Carvalho Chehab 2018-05-08 3:07 ` Greg Kroah-Hartman 2018-05-08 15:49 ` Luis R. Rodriguez 2018-05-08 16:13 ` [PATCH 00/18] Fix some build warnings/errors with Sphinx Jonathan Corbet 1 sibling, 2 replies; 7+ messages in thread From: Mauro Carvalho Chehab @ 2018-05-07 9:35 UTC (permalink / raw) To: Linux Doc Mailing List Cc: Mauro Carvalho Chehab, Mauro Carvalho Chehab, linux-kernel, Jonathan Corbet, Rafael J. Wysocki, Len Brown, Pavel Machek, Luis R. Rodriguez, Greg Kroah-Hartman, Masanari Iida, linux-pm, Kees Cook commit 5d6d1ddd2730 ("firmware: move firmware loader into its own directory") and other commits renamed the old firmware_class.c file and split it into separate files, but documentation was not changed accordingly, causing Sphinx errors. Change the location accordingly at the documentation files. While here, add a missing entry at request_firmware.rst for release_firmware() function. Fixes: 5d6d1ddd2730 ("firmware: move firmware loader into its own directory") Cc: Kees Cook <keescook@chromium.org> Cc: Luis R. Rodriguez <mcgrof@kernel.org> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org> --- Documentation/dell_rbu.txt | 4 ++-- .../driver-api/firmware/fallback-mechanisms.rst | 2 +- .../driver-api/firmware/request_firmware.rst | 17 +++++++++++------ Documentation/driver-api/infrastructure.rst | 2 +- Documentation/power/suspend-and-cpuhotplug.txt | 2 +- 5 files changed, 16 insertions(+), 11 deletions(-) diff --git a/Documentation/dell_rbu.txt b/Documentation/dell_rbu.txt index 0fdb6aa2704c..befeff80e7ec 100644 --- a/Documentation/dell_rbu.txt +++ b/Documentation/dell_rbu.txt @@ -121,8 +121,8 @@ read back the image downloaded. .. note:: - This driver requires a patch for firmware_class.c which has the modified - request_firmware_nowait function. + This driver requires a patch for drivers/base/firmware_loader/main.c + which has the modified request_firmware_nowait() function. Also after updating the BIOS image a user mode application needs to execute code which sends the BIOS update request to the BIOS. So on the next reboot diff --git a/Documentation/driver-api/firmware/fallback-mechanisms.rst b/Documentation/driver-api/firmware/fallback-mechanisms.rst index f353783ae0be..7aed31b5a439 100644 --- a/Documentation/driver-api/firmware/fallback-mechanisms.rst +++ b/Documentation/driver-api/firmware/fallback-mechanisms.rst @@ -72,7 +72,7 @@ the firmware requested, and establishes it in the device hierarchy by associating the device used to make the request as the device's parent. The sysfs directory's file attributes are defined and controlled through the new device's class (firmware_class) and group (fw_dev_attr_groups). -This is actually where the original firmware_class.c file name comes from, +This is actually where drivers/base/firmware_loader/fallback.c comes from, as originally the only firmware loading mechanism available was the mechanism we now use as a fallback mechanism. diff --git a/Documentation/driver-api/firmware/request_firmware.rst b/Documentation/driver-api/firmware/request_firmware.rst index cf4516dfbf96..8e34d29ea02d 100644 --- a/Documentation/driver-api/firmware/request_firmware.rst +++ b/Documentation/driver-api/firmware/request_firmware.rst @@ -17,19 +17,24 @@ an error is returned. request_firmware ---------------- -.. kernel-doc:: drivers/base/firmware_class.c +.. kernel-doc:: drivers/base/firmware_loader/main.c :functions: request_firmware request_firmware_direct ----------------------- -.. kernel-doc:: drivers/base/firmware_class.c +.. kernel-doc:: drivers/base/firmware_loader/main.c :functions: request_firmware_direct request_firmware_into_buf ------------------------- -.. kernel-doc:: drivers/base/firmware_class.c +.. kernel-doc:: drivers/base/firmware_loader/main.c :functions: request_firmware_into_buf +release_firmware +---------------- +.. kernel-doc:: drivers/base/firmware_loader/main.c + :functions: release_firmware + Asynchronous firmware requests ============================== @@ -41,7 +46,7 @@ in atomic contexts. request_firmware_nowait ----------------------- -.. kernel-doc:: drivers/base/firmware_class.c +.. kernel-doc:: drivers/base/firmware_loader/main.c :functions: request_firmware_nowait Special optimizations on reboot @@ -54,8 +59,8 @@ this can be done with firmware_request_cache() insted of requesting for the firmare to be loaded. firmware_request_cache() ------------------------ -.. kernel-doc:: drivers/base/firmware_class.c +------------------------ +.. kernel-doc:: drivers/base/firmware_loader/main.c :functions: firmware_request_cache request firmware API expected driver use diff --git a/Documentation/driver-api/infrastructure.rst b/Documentation/driver-api/infrastructure.rst index 6d9ff316b608..bee1b9a1702f 100644 --- a/Documentation/driver-api/infrastructure.rst +++ b/Documentation/driver-api/infrastructure.rst @@ -28,7 +28,7 @@ Device Drivers Base .. kernel-doc:: drivers/base/node.c :internal: -.. kernel-doc:: drivers/base/firmware_class.c +.. kernel-doc:: drivers/base/firmware_loader/main.c :export: .. kernel-doc:: drivers/base/transport_class.c diff --git a/Documentation/power/suspend-and-cpuhotplug.txt b/Documentation/power/suspend-and-cpuhotplug.txt index 31abd04b9572..6f55eb960a6d 100644 --- a/Documentation/power/suspend-and-cpuhotplug.txt +++ b/Documentation/power/suspend-and-cpuhotplug.txt @@ -168,7 +168,7 @@ update on the CPUs, as discussed below: [Please bear in mind that the kernel requests the microcode images from userspace, using the request_firmware() function defined in -drivers/base/firmware_class.c] +drivers/base/firmware_loader/main.c] a. When all the CPUs are identical: -- 2.17.0 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH 02/18] docs: fix location of request_firmware & friends 2018-05-07 9:35 ` [PATCH 02/18] docs: fix location of request_firmware & friends Mauro Carvalho Chehab @ 2018-05-08 3:07 ` Greg Kroah-Hartman 2018-05-08 15:49 ` Luis R. Rodriguez 1 sibling, 0 replies; 7+ messages in thread From: Greg Kroah-Hartman @ 2018-05-08 3:07 UTC (permalink / raw) To: Mauro Carvalho Chehab Cc: Linux Doc Mailing List, Mauro Carvalho Chehab, linux-kernel, Jonathan Corbet, Rafael J. Wysocki, Len Brown, Pavel Machek, Luis R. Rodriguez, Masanari Iida, linux-pm, Kees Cook On Mon, May 07, 2018 at 06:35:38AM -0300, Mauro Carvalho Chehab wrote: > commit 5d6d1ddd2730 ("firmware: move firmware loader into its own directory") > and other commits renamed the old firmware_class.c file and split it > into separate files, but documentation was not changed accordingly, > causing Sphinx errors. > > Change the location accordingly at the documentation files. > > While here, add a missing entry at request_firmware.rst for > release_firmware() function. > > Fixes: 5d6d1ddd2730 ("firmware: move firmware loader into its own directory") > Cc: Kees Cook <keescook@chromium.org> > Cc: Luis R. Rodriguez <mcgrof@kernel.org> > Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org> > Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org> Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 02/18] docs: fix location of request_firmware & friends 2018-05-07 9:35 ` [PATCH 02/18] docs: fix location of request_firmware & friends Mauro Carvalho Chehab 2018-05-08 3:07 ` Greg Kroah-Hartman @ 2018-05-08 15:49 ` Luis R. Rodriguez 2018-05-09 12:26 ` Mauro Carvalho Chehab 1 sibling, 1 reply; 7+ messages in thread From: Luis R. Rodriguez @ 2018-05-08 15:49 UTC (permalink / raw) To: Mauro Carvalho Chehab Cc: Linux Doc Mailing List, Mauro Carvalho Chehab, linux-kernel, Jonathan Corbet, Rafael J. Wysocki, Len Brown, Pavel Machek, Luis R. Rodriguez, Greg Kroah-Hartman, Masanari Iida, linux-pm, Kees Cook On Mon, May 07, 2018 at 06:35:38AM -0300, Mauro Carvalho Chehab wrote: > commit 5d6d1ddd2730 ("firmware: move firmware loader into its own directory") > and other commits renamed the old firmware_class.c file and split it > into separate files, but documentation was not changed accordingly, > causing Sphinx errors. > > Change the location accordingly at the documentation files. > > While here, add a missing entry at request_firmware.rst for > release_firmware() function. > > Fixes: 5d6d1ddd2730 ("firmware: move firmware loader into its own directory") > Cc: Kees Cook <keescook@chromium.org> > Cc: Luis R. Rodriguez <mcgrof@kernel.org> > Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org> > Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org> > --- > Documentation/dell_rbu.txt | 4 ++-- > .../driver-api/firmware/fallback-mechanisms.rst | 2 +- > .../driver-api/firmware/request_firmware.rst | 17 +++++++++++------ > Documentation/driver-api/infrastructure.rst | 2 +- > Documentation/power/suspend-and-cpuhotplug.txt | 2 +- > 5 files changed, 16 insertions(+), 11 deletions(-) > > diff --git a/Documentation/dell_rbu.txt b/Documentation/dell_rbu.txt > index 0fdb6aa2704c..befeff80e7ec 100644 > --- a/Documentation/dell_rbu.txt > +++ b/Documentation/dell_rbu.txt > @@ -121,8 +121,8 @@ read back the image downloaded. > > .. note:: > > - This driver requires a patch for firmware_class.c which has the modified > - request_firmware_nowait function. > + This driver requires a patch for drivers/base/firmware_loader/main.c > + which has the modified request_firmware_nowait() function. > > Also after updating the BIOS image a user mode application needs to execute > code which sends the BIOS update request to the BIOS. So on the next reboot This part looks good and is needed. > diff --git a/Documentation/driver-api/firmware/fallback-mechanisms.rst b/Documentation/driver-api/firmware/fallback-mechanisms.rst > index f353783ae0be..7aed31b5a439 100644 > --- a/Documentation/driver-api/firmware/fallback-mechanisms.rst > +++ b/Documentation/driver-api/firmware/fallback-mechanisms.rst > @@ -72,7 +72,7 @@ the firmware requested, and establishes it in the device hierarchy by > associating the device used to make the request as the device's parent. > The sysfs directory's file attributes are defined and controlled through > the new device's class (firmware_class) and group (fw_dev_attr_groups). > -This is actually where the original firmware_class.c file name comes from, > +This is actually where drivers/base/firmware_loader/fallback.c comes from, Not this part. What I meant to keep well documented here was not just only the old firmware file name for the code, but also the module name firmware_class, and its respective sysfs class name which is registered. From what I recall testing, we could not rename the module now because of this. I believe it had to do with the modular case, given the sysfs class could still be registered. The fact that I forget the exact *issue* which prevented the module rename shows how important it is to document this. Folks 10 years from now may wonder why the hell that name stuck, and the point was to document that the *original* loader was the sysfs fallback mechanism. > as originally the only firmware loading mechanism available was the > mechanism we now use as a fallback mechanism. > > diff --git a/Documentation/driver-api/firmware/request_firmware.rst b/Documentation/driver-api/firmware/request_firmware.rst > index cf4516dfbf96..8e34d29ea02d 100644 > --- a/Documentation/driver-api/firmware/request_firmware.rst > +++ b/Documentation/driver-api/firmware/request_firmware.rst > @@ -17,19 +17,24 @@ an error is returned. > > request_firmware > ---------------- > -.. kernel-doc:: drivers/base/firmware_class.c > +.. kernel-doc:: drivers/base/firmware_loader/main.c > :functions: request_firmware This is fixed on Hans de Goede's patch already merged on Greg's own tree. > request_firmware_direct > ----------------------- > -.. kernel-doc:: drivers/base/firmware_class.c > +.. kernel-doc:: drivers/base/firmware_loader/main.c > :functions: request_firmware_direct This is fixed on Hans de Goede's patch already merged on Greg's own tree. > request_firmware_into_buf > ------------------------- > -.. kernel-doc:: drivers/base/firmware_class.c > +.. kernel-doc:: drivers/base/firmware_loader/main.c > :functions: request_firmware_into_buf This is fixed on Hans de Goede's patch already merged on Greg's own tree. > +release_firmware > +---------------- > +.. kernel-doc:: drivers/base/firmware_loader/main.c > + :functions: release_firmware This is fixed on Hans de Goede's patch already merged on Greg's own tree. > + > Asynchronous firmware requests > ============================== > > @@ -41,7 +46,7 @@ in atomic contexts. > > request_firmware_nowait > ----------------------- > -.. kernel-doc:: drivers/base/firmware_class.c > +.. kernel-doc:: drivers/base/firmware_loader/main.c > :functions: request_firmware_nowait This is fixed on Hans de Goede's patch already merged on Greg's own tree. > > Special optimizations on reboot > @@ -54,8 +59,8 @@ this can be done with firmware_request_cache() insted of requesting for the > firmare to be loaded. > > firmware_request_cache() > ------------------------ > -.. kernel-doc:: drivers/base/firmware_class.c > +------------------------ > +.. kernel-doc:: drivers/base/firmware_loader/main.c > :functions: firmware_request_cache This is fixed on Hans de Goede's patch already merged on Greg's own tree. > > request firmware API expected driver use > diff --git a/Documentation/driver-api/infrastructure.rst b/Documentation/driver-api/infrastructure.rst > index 6d9ff316b608..bee1b9a1702f 100644 > --- a/Documentation/driver-api/infrastructure.rst > +++ b/Documentation/driver-api/infrastructure.rst > @@ -28,7 +28,7 @@ Device Drivers Base > .. kernel-doc:: drivers/base/node.c > :internal: > > -.. kernel-doc:: drivers/base/firmware_class.c > +.. kernel-doc:: drivers/base/firmware_loader/main.c This is fixed on Hans de Goede's patch already merged on Greg's own tree. > :export: > > .. kernel-doc:: drivers/base/transport_class.c > diff --git a/Documentation/power/suspend-and-cpuhotplug.txt b/Documentation/power/suspend-and-cpuhotplug.txt > index 31abd04b9572..6f55eb960a6d 100644 > --- a/Documentation/power/suspend-and-cpuhotplug.txt > +++ b/Documentation/power/suspend-and-cpuhotplug.txt > @@ -168,7 +168,7 @@ update on the CPUs, as discussed below: > > [Please bear in mind that the kernel requests the microcode images from > userspace, using the request_firmware() function defined in > -drivers/base/firmware_class.c] > +drivers/base/firmware_loader/main.c] This is fixed on Hans de Goede's patch already merged on Greg's own tree. Luis ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 02/18] docs: fix location of request_firmware & friends 2018-05-08 15:49 ` Luis R. Rodriguez @ 2018-05-09 12:26 ` Mauro Carvalho Chehab 0 siblings, 0 replies; 7+ messages in thread From: Mauro Carvalho Chehab @ 2018-05-09 12:26 UTC (permalink / raw) To: Luis R. Rodriguez Cc: Linux Doc Mailing List, Mauro Carvalho Chehab, linux-kernel, Jonathan Corbet, Rafael J. Wysocki, Len Brown, Pavel Machek, Greg Kroah-Hartman, Masanari Iida, linux-pm, Kees Cook Em Tue, 8 May 2018 15:49:08 +0000 "Luis R. Rodriguez" <mcgrof@kernel.org> escreveu: > On Mon, May 07, 2018 at 06:35:38AM -0300, Mauro Carvalho Chehab wrote: > > commit 5d6d1ddd2730 ("firmware: move firmware loader into its own directory") > > and other commits renamed the old firmware_class.c file and split it > > into separate files, but documentation was not changed accordingly, > > causing Sphinx errors. > > > > Change the location accordingly at the documentation files. > > > > While here, add a missing entry at request_firmware.rst for > > release_firmware() function. > > > > Fixes: 5d6d1ddd2730 ("firmware: move firmware loader into its own directory") > > Cc: Kees Cook <keescook@chromium.org> > > Cc: Luis R. Rodriguez <mcgrof@kernel.org> > > Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org> > > Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org> > > --- > > Documentation/dell_rbu.txt | 4 ++-- > > .../driver-api/firmware/fallback-mechanisms.rst | 2 +- > > .../driver-api/firmware/request_firmware.rst | 17 +++++++++++------ > > Documentation/driver-api/infrastructure.rst | 2 +- > > Documentation/power/suspend-and-cpuhotplug.txt | 2 +- > > 5 files changed, 16 insertions(+), 11 deletions(-) > > > > diff --git a/Documentation/dell_rbu.txt b/Documentation/dell_rbu.txt > > index 0fdb6aa2704c..befeff80e7ec 100644 > > --- a/Documentation/dell_rbu.txt > > +++ b/Documentation/dell_rbu.txt > > @@ -121,8 +121,8 @@ read back the image downloaded. > > > > .. note:: > > > > - This driver requires a patch for firmware_class.c which has the modified > > - request_firmware_nowait function. > > + This driver requires a patch for drivers/base/firmware_loader/main.c > > + which has the modified request_firmware_nowait() function. > > > > Also after updating the BIOS image a user mode application needs to execute > > code which sends the BIOS update request to the BIOS. So on the next reboot > > This part looks good and is needed. Ok. I'll submit this as a separate patch. > > > diff --git a/Documentation/driver-api/firmware/fallback-mechanisms.rst b/Documentation/driver-api/firmware/fallback-mechanisms.rst > > index f353783ae0be..7aed31b5a439 100644 > > --- a/Documentation/driver-api/firmware/fallback-mechanisms.rst > > +++ b/Documentation/driver-api/firmware/fallback-mechanisms.rst > > @@ -72,7 +72,7 @@ the firmware requested, and establishes it in the device hierarchy by > > associating the device used to make the request as the device's parent. > > The sysfs directory's file attributes are defined and controlled through > > the new device's class (firmware_class) and group (fw_dev_attr_groups). > > -This is actually where the original firmware_class.c file name comes from, > > +This is actually where drivers/base/firmware_loader/fallback.c comes from, > > Not this part. > > What I meant to keep well documented here was not just only the old firmware > file name for the code, but also the module name firmware_class, and its > respective sysfs class name which is registered. From what I recall testing, we > could not rename the module now because of this. I believe it had to do with > the modular case, given the sysfs class could still be registered. > > The fact that I forget the exact *issue* which prevented the module rename shows > how important it is to document this. > > Folks 10 years from now may wonder why the hell that name stuck, and the point was > to document that the *original* loader was the sysfs fallback mechanism. Yeah, I was in doubt about this one too. Yet, IMHO, mentioning a filename that got removed will also be problematic 10 years from now. Perhaps you could say something similar to: Originally, the only firmware loading mechanism available was the one that it is now used as fallback. The file containing it used to be named after it, as firmware_class.c (nowadays, the fallback mechanism is at drivers/base/firmware_loader/fallback.c). This way, you keep providing the explanations while pointing to the new location of the code. Just my 2 cents. Thanks, Mauro ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 00/18] Fix some build warnings/errors with Sphinx 2018-05-07 9:35 [PATCH 00/18] Fix some build warnings/errors with Sphinx Mauro Carvalho Chehab 2018-05-07 9:35 ` [PATCH 02/18] docs: fix location of request_firmware & friends Mauro Carvalho Chehab @ 2018-05-08 16:13 ` Jonathan Corbet 2018-05-08 17:36 ` Luis R. Rodriguez 1 sibling, 1 reply; 7+ messages in thread From: Jonathan Corbet @ 2018-05-08 16:13 UTC (permalink / raw) To: Mauro Carvalho Chehab Cc: linux-fbdev, Linux Doc Mailing List, linux-iio, Greg Kroah-Hartman, linux-pm, linux-wireless, linux-kernel, dri-devel, Mauro Carvalho Chehab, Luis R. Rodriguez, linux-mtd, linux-crypto, linux-can On Mon, 7 May 2018 06:35:36 -0300 Mauro Carvalho Chehab <mchehab+samsung@kernel.org> wrote: > I decided to give a try with Sphinx last stable version > (1.17.4), and noticed several issues. The worse one was > with the networking book: a non-standard footnote there > with [*] instead of a number causes it to break PDF building. > > So, I took some spare time to address some warnings all over > the tree, and moved a few text documents to a book. OK, I've applied the ones that seem to make sense for me to take now. There's comments on the firmware one, and I'd rather have Tejun's OK for the cgroup one. The code-comment changes should probably go via the usual maintainers. > I with > I had more time to move the other ones and to solve other > warnings. You and me both - but each step helps! Thanks, jon _______________________________________________ dri-devel mailing list dri-devel@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/dri-devel ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 00/18] Fix some build warnings/errors with Sphinx 2018-05-08 16:13 ` [PATCH 00/18] Fix some build warnings/errors with Sphinx Jonathan Corbet @ 2018-05-08 17:36 ` Luis R. Rodriguez 0 siblings, 0 replies; 7+ messages in thread From: Luis R. Rodriguez @ 2018-05-08 17:36 UTC (permalink / raw) To: Jonathan Corbet Cc: linux-fbdev, Linux Doc Mailing List, linux-iio, Greg Kroah-Hartman, linux-pm, linux-wireless, linux-kernel, dri-devel, Mauro Carvalho Chehab, Luis R. Rodriguez, linux-mtd, linux-crypto, Mauro Carvalho Chehab, linux-can On Tue, May 08, 2018 at 10:13:42AM -0600, Jonathan Corbet wrote: > On Mon, 7 May 2018 06:35:36 -0300 > Mauro Carvalho Chehab <mchehab+samsung@kernel.org> wrote: > > > I decided to give a try with Sphinx last stable version > > (1.17.4), and noticed several issues. The worse one was > > with the networking book: a non-standard footnote there > > with [*] instead of a number causes it to break PDF building. > > > > So, I took some spare time to address some warnings all over > > the tree, and moved a few text documents to a book. > > OK, I've applied the ones that seem to make sense for me to take now. > There's comments on the firmware one, I'll fold in the fixes for the firmware API which do apply to my queue. Luis _______________________________________________ dri-devel mailing list dri-devel@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/dri-devel ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2018-05-09 12:26 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2018-05-07 9:35 [PATCH 00/18] Fix some build warnings/errors with Sphinx Mauro Carvalho Chehab 2018-05-07 9:35 ` [PATCH 02/18] docs: fix location of request_firmware & friends Mauro Carvalho Chehab 2018-05-08 3:07 ` Greg Kroah-Hartman 2018-05-08 15:49 ` Luis R. Rodriguez 2018-05-09 12:26 ` Mauro Carvalho Chehab 2018-05-08 16:13 ` [PATCH 00/18] Fix some build warnings/errors with Sphinx Jonathan Corbet 2018-05-08 17:36 ` Luis R. Rodriguez
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).