Re: [PATCH 2/2] mac80211: use inline kernel-doc for struct ieee80211_hw

2016-10-26 Thread Jani Nikula
On Wed, 26 Oct 2016, Johannes Berg wrote: > On Fri, 2016-10-21 at 15:57 +0300, Jani Nikula wrote: >> It's easier to manage the kernel-doc for the fields when they >> documentation is next to the field. > > Ok, actually, this doesn't apply. Perhaps I'll look into scripting this > kind of conversion

Re: [PATCH 2/2] mac80211: use inline kernel-doc for struct ieee80211_hw

2016-10-26 Thread Johannes Berg
On Wed, 2016-10-26 at 11:36 +0300, Jani Nikula wrote: > On Wed, 26 Oct 2016, Johannes Berg wrote: > > > > On Fri, 2016-10-21 at 15:57 +0300, Jani Nikula wrote: > > > > > > It's easier to manage the kernel-doc for the fields when they > > > documentation is next to the field. > > > > Ok, actuall

Re: [PATCH] Documentation: cpu-hotplug: Fix typos

2016-10-26 Thread Jani Nikula
On Wed, 26 Oct 2016, Jonathan Corbet wrote: > I fixed that one too after applying the patch, thanks. If I'm not wrong, > this is your first kernel patch - congratulations! The next patch could be converting the file to reStructuredText! ;) BR, Jani. -- Jani Nikula, Intel Open Source Technolog

Re: [DOC] Missing completions-design.txt?

2016-10-26 Thread Nicholas Mc Guire
On Tue, Oct 25, 2016 at 12:50:01PM -0700, Brian Norris wrote: > Hi, > > It looks like Nicholas submitted this doc a while back as patch 2/2: > > "[PATCH 2/2] doc: detailed documentation for completion" > http://lkml.iu.edu/hypermail/linux/kernel/1412.2/03676.html > > where patch 1/2 got merged a

Re: [PATCH 3/3] x86/vmware: Add paravirt sched clock

2016-10-26 Thread Thomas Gleixner
On Tue, 25 Oct 2016, Alexey Makhalov wrote: > no-vmw-sched-clock kernel parameter is added to switch back to the > native_sched_clock() implementation. You are not switching back. The parameter is used to disable the paravirt sched clock. > #ifdef CONFIG_PARAVIRT > +static struct cyc2ns_data vmw

Re: [PATCH v3 12/37] Documentation/initrd.txt: convert to ReST markup

2016-10-26 Thread Mauro Carvalho Chehab
Em Tue, 25 Oct 2016 17:24:02 -0600 Jonathan Corbet escreveu: > On Mon, 24 Oct 2016 09:00:21 -0200 > Mauro Carvalho Chehab wrote: > > > - use a quote blocks where needed; > > - fix the chapter/section/subsection markups; > > - use ``foo`` for monotonic; > > - use .. note:: for /sbin/init file pe

[PATCH 2/5] ARM: Kconfig: Introduce MACH_STM32F746 flag

2016-10-26 Thread Alexandre TORGUE
This patch introduces the MACH_STM32F746 to make possible to only select STM32F746 pinctrl driver By default, all the MACH_STM32Fxxx flags will be set with STM32 defconfig. Signed-off-by: Maxime Coquelin Signed-off-by: Alexandre TORGUE diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index b5d

[PATCH 0/5] ADD STM32F746 MCU and STM32746G-Eval board supports

2016-10-26 Thread Alexandre TORGUE
This series adds basic support for STM32F746 MCU and stm32746g-eval board. With it, you can boot stm32746g-eval board successfully. In this series timer, usart/uart, exti, rng, basic rcc IPs are supported. Other Ips (Ethernet, dma, ...) will come later. For your information: The STMicrolectornics

[PATCH 3/5] ARM: dts: Add STM32F746 MCU and STM32746g-EVAL board

2016-10-26 Thread Alexandre TORGUE
The STMicrolectornics's STM32F746 MCU has the following main features: - Cortex-M7 core running up to @216MHz - 1MB internal flash, 320KBytes internal RAM (+4KB of backup SRAM) - FMC controller to connect SDRAM, NOR and NAND memories - Dual mode QSPI - SD/MMC/SDIO support - Ethernet controlle

[PATCH 5/5] ARM: configs: Add new config fragment to change RAM size

2016-10-26 Thread Alexandre TORGUE
Signed-off-by: Alexandre TORGUE diff --git a/arch/arm/configs/dram_size_0x200.config b/arch/arm/configs/dram_size_0x200.config new file mode 100644 index 000..e66430d --- /dev/null +++ b/arch/arm/configs/dram_size_0x200.config @@ -0,0 +1 @@ +CONFIG_DRAM_SIZE=0x00200 -- 1.9.1

[PATCH 1/5] ARM: mach-stm32: Add a new SOC - STM32F746

2016-10-26 Thread Alexandre TORGUE
Signed-off-by: Maxime Coquelin Signed-off-by: Alexandre TORGUE diff --git a/Documentation/arm/stm32/overview.txt b/Documentation/arm/stm32/overview.txt index 09aed55..a03b035 100644 --- a/Documentation/arm/stm32/overview.txt +++ b/Documentation/arm/stm32/overview.txt @@ -5,7 +5,8 @@ Introductio

[PATCH 4/5] ARM: configs: Add new config fragment to change RAM start point

2016-10-26 Thread Alexandre TORGUE
Signed-off-by: Alexandre TORGUE diff --git a/arch/arm/configs/dram_0xc000.config b/arch/arm/configs/dram_0xc000.config new file mode 100644 index 000..343d533 --- /dev/null +++ b/arch/arm/configs/dram_0xc000.config @@ -0,0 +1 @@ +CONFIG_DRAM_BASE=0xc000 -- 1.9.1 -- To unsub

Re: [PATCH] Documentation: cpu-hotplug: Fix typos

2016-10-26 Thread Igor Vuk
On 26.10.2016 01:01, Jonathan Corbet wrote: You missed one! :) Yeah, I noticed that one when the patch was already sent. :) I fixed that one too after applying the patch, thanks. If I'm not wrong, this is your first kernel patch - congratulations! Thanks! -- To unsubscribe from this list:

[PATCH v2 3/3] x86/vmware: Add paravirt sched clock

2016-10-26 Thread Alexey Makhalov
Set pv_time_ops.sched_clock to vmware_sched_clock(). It is simplified version of native_sched_clock() without ring buffer of mult/shift/offset triplets and preempt toggling. Since VMware hypervisor provides constant tsc we can use constant mult/shift/offset triplet calculated at boot time. no-vmw-

Re: [PATCH] Documentation: cpu-hotplug: Fix typos

2016-10-26 Thread Igor Vuk
On 26.10.2016 11:03, Jani Nikula wrote: The next patch could be converting the file to reStructuredText! ;) Would this be useful? I could give it a try, if it's needed. -- To unsubscribe from this list: send the line "unsubscribe linux-doc" in the body of a message to majord...@vger.kernel.org

[PATCH 05/12] edac: move documentation from edac_device to edac_core.h

2016-10-26 Thread Mauro Carvalho Chehab
Several functions are documented at edac_device.c. As we'll be including edac_core.h at drivers-api book, move those, in order for the kernel-doc markups be part of the API documentation book. As several of those kernel-doc macros are not in the right format, fix them. Signed-off-by: Mauro Carva

[PATCH 01/12] edac: edac_core.h: get rid of unused kobj_complete

2016-10-26 Thread Mauro Carvalho Chehab
This element of struct edac_pci_ctl_info is never used. So, get rid of it. Signed-off-by: Mauro Carvalho Chehab --- drivers/edac/edac_core.h | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/edac/edac_core.h b/drivers/edac/edac_core.h index 4861542163d7..58d66da56486 100644 --- a/driver

[PATCH 06/12] edac: move documentation from edac_pci*.c to edac_core.h

2016-10-26 Thread Mauro Carvalho Chehab
Several functions are documented at edac_pci.c and edac_pci_sysfs.c. As we'll be including edac_core.h at drivers-api book, move those, in order for the kernel-doc markups be part of the API documentation book. As several of those kernel-doc macros are not in the right format, fix them. Signed-o

[PATCH 02/12] edac: edac_core.h: remove prototype for edac_pci_reset_delay_period()

2016-10-26 Thread Mauro Carvalho Chehab
This function doesn't exist. So, remove its prototype. Signed-off-by: Mauro Carvalho Chehab --- drivers/edac/edac_core.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/drivers/edac/edac_core.h b/drivers/edac/edac_core.h index 58d66da56486..1723f3643e75 100644 --- a/drivers/edac/edac_core.

[PATCH 08/12] edac.txt: remove info that the Nehalem EDAC is experimental

2016-10-26 Thread Mauro Carvalho Chehab
This driver has been there for almost 3 years, without any conceptual changes. So, it is not experimental anymore, and won't likely have any changes at the API or on log outputs. Signed-off-by: Mauro Carvalho Chehab --- Documentation/edac.txt | 4 1 file changed, 4 deletions(-) diff --git

[PATCH 04/12] edac: move documentation from edac_mc.c to edac_core.h

2016-10-26 Thread Mauro Carvalho Chehab
Several functions are documented at edac_mc.c. As we'll be including edac_core.h at drivers-api book, move those, in order for the kernel-doc markups be part of the API documentation book. Signed-off-by: Mauro Carvalho Chehab --- drivers/edac/edac_core.h | 101 ++

[PATCH 12/12] edac: edac_core.h: make checkpatch happy

2016-10-26 Thread Mauro Carvalho Chehab
As we did massive changes on edac_core.h, let's take the opportunity to make checkpatch happy where possible. Signed-off-by: Mauro Carvalho Chehab --- drivers/edac/edac_core.h | 30 +++--- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/drivers/edac/edac_c

[PATCH 03/12] edac: edac_mc.c: Use an error code instead of -1

2016-10-26 Thread Mauro Carvalho Chehab
If a csrow is not found by edac_mc_find_csrow_by_page(), it currently returns -1, to mean that the page is invalid. Use the proper errorcode macro for that (-EINVAL). Signed-off-by: Mauro Carvalho Chehab --- drivers/edac/edac_mc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[PATCH 00/12] Put the EDAC documentation at the Sphinx books

2016-10-26 Thread Mauro Carvalho Chehab
This patch series convert the Documentation/edac.txt book to ReST and add an EDAC documentation to the driver-api book. The first 3 patches on this series are just cleanups to the headers, removing two unused stuff and using -EINVAL instead of -1 on one of the functions. The next 3 patches move e

[PATCH 11/12] driver-api: create an edac.rst file with EDAC documentation

2016-10-26 Thread Mauro Carvalho Chehab
Currently, there's no device driver documentation for the EDAC subsystem at the driver-api book. Fill in the blanks for the structures and functions that misses documentation, uniform the word on the existing ones, and add a new edac.rst file at driver-api, in order to document the EDAC subsystem.

[PATCH 09/12] edac.txt: update information about newer Intel CPUs

2016-10-26 Thread Mauro Carvalho Chehab
There's a chapter at edac.rst written by the time Nehalem support was added. Such information is used not only by the Nehalem driver (i7core_edac), but by all newer Intel CPU architectures that are supported by i7core_edac, sb_edac and sbx_edac drivers. Update the information to reflect that. Sig

[PATCH 07/12] edac.txt: convert EDAC documentation to ReST

2016-10-26 Thread Mauro Carvalho Chehab
Converts the EDAC driver subsystem documentation to ReST: - Put paragraph titles in lower case; - Add code blocks where needed; - Convert tables to ReST markup; - Mark filesystem and module names as verbatim; - Adjust document to be properly displayed in html. Signed-off-by: Mauro Carvalho Chehab

[PATCH 10/12] docs-rst: admin-guide: add documentation for EDAC

2016-10-26 Thread Mauro Carvalho Chehab
EDAC is part of the Kernel's RAS facilities, with is useful for system admins to detect errors. So, add it to the admin's guide. Signed-off-by: Mauro Carvalho Chehab --- Documentation/{edac.txt => admin-guide/edac.rst} | 0 Documentation/admin-guide/index.rst | 1 + 2 files changed,

Re: [PATCH 00/12] Put the EDAC documentation at the Sphinx books

2016-10-26 Thread Mauro Carvalho Chehab
Em Wed, 26 Oct 2016 17:58:50 -0200 Mauro Carvalho Chehab escreveu: > This patch series convert the Documentation/edac.txt book to ReST and > add an EDAC documentation to the driver-api book. > > The first 3 patches on this series are just cleanups to the headers, > removing two unused stuff and

[PATCH] Documentation: initrd: Remove trailing whitespace

2016-10-26 Thread Igor Vuk
Trailing whitespace cleanup. Signed-off-by: Igor Vuk --- Documentation/initrd.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Documentation/initrd.txt b/Documentation/initrd.txt index 4e1839c..0664e33 100644 --- a/Documentation/initrd.txt +++ b/Documentation/initrd.

Re: [PATCH] Documentation: initrd: Remove trailing whitespace

2016-10-26 Thread Jonathan Corbet
On Wed, 26 Oct 2016 22:20:22 +0200 Igor Vuk wrote: > Trailing whitespace cleanup. > > Signed-off-by: Igor Vuk > --- > Documentation/initrd.txt | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) Unfortunately, this file has been converted to RST and moved, so this patch won't apply.

Re: [PATCH] Documentation: initrd: Remove trailing whitespace

2016-10-26 Thread Igor Vuk
On 26.10.2016 22:25, Jonathan Corbet wrote: Unfortunately, this file has been converted to RST and moved, so this patch won't apply. Sorry for the noise, in that case. :/ I've been checking against current master and linux-next trees, both of those still have that file in place. Is there anot

Re: [PATCH 2/3] x86/vmware: Add basic paravirt ops support

2016-10-26 Thread Tim Mann
I believe our trademark guidelines say we aren't supposed to use VMware as a noun to mean a product, only to mean the company. So we can say "running on VMware ESXi" or "running in a VMware virtual machine", but "running on VMware" is wrong. There is supposedly some good legal reason for this rel

Re: [PATCH 2/3] x86/vmware: Add basic paravirt ops support

2016-10-26 Thread Thomas Gleixner
On Wed, 26 Oct 2016, Tim Mann wrote: > I believe our trademark guidelines say we aren't supposed to use VMware as a > noun to mean a product, only to mean the company. So we can say "running on > VMware ESXi" or "running in a VMware virtual machine", but "running on VMware" > is wrong. There is

Re: [PATCH] mcp3021: rework for DT support of reference-voltage

2016-10-26 Thread Rob Herring
On Wed, Oct 19, 2016 at 12:44:44AM +0200, Clemens Gruber wrote: > Support setting the reference voltage in the device tree. > Rework of driver structure, put chip specific data in a separate > structure and assign it depending on device id from platform data or > DT match. > Extend the device docum

Re: [PATCH] Documentation: initrd: Remove trailing whitespace

2016-10-26 Thread Jonathan Corbet
On Wed, 26 Oct 2016 22:45:27 +0200 Igor Vuk wrote: > I've been checking against current master and linux-next trees, both of > those still have that file in place. Is there another git branch/repo > that I can use for reference? The MAINTAINERS file is the place to look for such information; you

Re: [PATCH v3 09/37] Documentation/BUG-HUNTING: convert to ReST markup

2016-10-26 Thread Mauro Carvalho Chehab
Em Tue, 25 Oct 2016 17:20:01 -0600 Jonathan Corbet escreveu: > On Mon, 24 Oct 2016 09:00:18 -0200 > Mauro Carvalho Chehab wrote: > > > - Add a document title and remove its own index; > > - use monotonic fonts for paths; > > - use quote blocks where needed; > > - adjust/use spaces to properly f

[PATCH 00/11] Organize and clean up the admin and process guides

2016-10-26 Thread Jonathan Corbet
The creation of the admin and process guides is a great thing, but, without care, we risk replacing a messy docs directory with a few messy Sphinx books. In an attempt to head that off and show what I'm thinking, here's a set of tweaks that, I think, make the existing Sphinx-formatted docs a bit m

[PATCH 11/11] docs: Add a warning to applying-patches.rst

2016-10-26 Thread Jonathan Corbet
This is ancient stuff and we don't do things this way anymore. In the absence of simply deleting the document, at least add a warning to it. Signed-off-by: Jonathan Corbet --- Documentation/process/applying-patches.rst | 4 1 file changed, 4 insertions(+) diff --git a/Documentation/proces

[PATCH 03/11] docs: Clean up and organize the admin guide a bit

2016-10-26 Thread Jonathan Corbet
The admin guide is a good start, but it's time to turn it into something better than an unordered blob of files. This is a first step in that direction. The TOC has been split up and annotated, the guides have been reordered, and minor tweaks have been applied to a few of them. One consequence o

[PATCH 06/11] docs: Get rid of the "bug-hunting" guide

2016-10-26 Thread Jonathan Corbet
Larry McVoy's advice on how to manually bisect 1.3.x kernel bugs is of historical interest, but that's what the repository is for. It is not useful to users now. Signed-off-by: Jonathan Corbet --- Documentation/admin-guide/bug-hunting.rst | 249 -- Documentation/admi

[PATCH 07/11] docs: Apply some basic organization to the process guide

2016-10-26 Thread Jonathan Corbet
Put like documents together, with the essential ones at the top, and split the TOC into sections. Signed-off-by: Jonathan Corbet --- Documentation/process/changes.rst | 2 +- Documentation/process/index.rst | 37 - 2 files changed, 29 insertions(+), 10 dele

[PATCH 10/11] docs: add a warning to submitting-drivers.rst

2016-10-26 Thread Jonathan Corbet
This is crufty stuff and should maybe just be deleted, but I'm not quite ready to do that yet. Signed-off-by: Jonathan Corbet --- Documentation/process/submitting-drivers.rst | 8 1 file changed, 8 insertions(+) diff --git a/Documentation/process/submitting-drivers.rst b/Documentation

[PATCH 08/11] docs: Tweak submitting-patches.rst formatting

2016-10-26 Thread Jonathan Corbet
The main goal here was to get the subsections to show in the TOC as they do for all the other documents. Also call out the DCO in the section title since it's important. Signed-off-by: Jonathan Corbet --- Documentation/process/submitting-patches.rst | 16 ++-- 1 file changed, 6 inse

[PATCH 09/11] docs: Collapse the process guide TOC

2016-10-26 Thread Jonathan Corbet
I believe this makes the page as a whole more approachable. Signed-off-by: Jonathan Corbet --- Documentation/process/index.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Documentation/process/index.rst b/Documentation/process/index.rst index 0cbc62adbbb1..0557144ce

[PATCH 05/11] docs: Get rid of the "basic profiling" guide

2016-10-26 Thread Jonathan Corbet
The document has not been touched in over 11 years and doesn't reflect how profiling is done in the perf era. Signed-off-by: Jonathan Corbet --- Documentation/admin-guide/basic-profiling.rst | 68 --- Documentation/admin-guide/index.rst | 1 - 2 files changed,

[PATCH 01/11] docs: Tweak the top-level Sphinx page

2016-10-26 Thread Jonathan Corbet
This will be the initial landing point for readers, so give them a bit of introductory material. Also split the TOC into area-specific chunks to make the whole thing a bit more approachable. Signed-off-by: Jonathan Corbet --- Documentation/index.rst | 45

[PATCH 02/11] docs: retitle the kernel-documentation.rst

2016-10-26 Thread Jonathan Corbet
Let's make the title of this document (which shows up in the top page) better describe its contents. Cc: Jani Nikula Signed-off-by: Jonathan Corbet --- Documentation/kernel-documentation.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Documentation/kernel-documenta

[PATCH 04/11] docs: Get rid of the badRAM guide

2016-10-26 Thread Jonathan Corbet
The last release of this tool was for 2.6.28; it's hard to see how it has any relevance to current kernels. Signed-off-by: Jonathan Corbet --- Documentation/admin-guide/bad-memory.rst | 50 Documentation/admin-guide/index.rst | 1 - 2 files changed, 51 dele

Re: [PATCH v3 04/37] Documentation/bad_memory.txt: convert it to ReST markup

2016-10-26 Thread Mauro Carvalho Chehab
Em Tue, 25 Oct 2016 17:11:08 -0600 Jonathan Corbet escreveu: > On Mon, 24 Oct 2016 09:00:13 -0200 > Mauro Carvalho Chehab wrote: > > > - promote the section level of the document name; > > - add/remove spaces/new lines where needed to format the output; > > - use quote blocks. > > - add it to t

Re: [PATCH v2 0/4] doc-rst: make sub-folder buildable stand-alone

2016-10-26 Thread Jonathan Corbet
On Wed, 26 Oct 2016 08:23:13 +0200 Markus Heiser wrote: > This patch series continues [1] the efforts to build sub-folders of the > documentation stand-alone. As far as I can tell, this all works as advertised, so I've just applied the set. Thanks, jon -- To unsubscribe from this list: send th

Re: [PATCH] Documentation: initrd: Remove trailing whitespace

2016-10-26 Thread Igor Vuk
On 26.10.2016 23:08, Jonathan Corbet wrote: The MAINTAINERS file is the place to look for such information; you'll find this line there under documentation: Apologies, I guess I should've read the KernelNewbies articles with a bit more concentration. :) I've skimmed over that file before sendi

Re: [PATCH v3 05/37] Documentation/basic_profiling.rst: convert to ReST markup

2016-10-26 Thread Mauro Carvalho Chehab
Em Tue, 25 Oct 2016 17:14:29 -0600 Jonathan Corbet escreveu: > On Mon, 24 Oct 2016 09:00:14 -0200 > Mauro Carvalho Chehab wrote: > > > Convert it to ReST markup and add it to the user book: > > > > - Add a title to the document; > > - touch spaces/new lines to fix Sphinx format; > > - use ``fo

Re: [PATCH 01/11] docs: Tweak the top-level Sphinx page

2016-10-26 Thread Mauro Carvalho Chehab
Em Wed, 26 Oct 2016 17:19:29 -0600 Jonathan Corbet escreveu: > This will be the initial landing point for readers, so give them a bit of > introductory material. Also split the TOC into area-specific chunks to > make the whole thing a bit more approachable. > > Signed-off-by: Jonathan Corbet

Re: [PATCH 02/11] docs: retitle the kernel-documentation.rst

2016-10-26 Thread Mauro Carvalho Chehab
Em Wed, 26 Oct 2016 17:19:30 -0600 Jonathan Corbet escreveu: > Let's make the title of this document (which shows up in the top page) > better describe its contents. > > Cc: Jani Nikula > Signed-off-by: Jonathan Corbet Reviewed-by: Mauro Carvalho Chehab > --- > Documentation/kernel-documen

Re: [PATCH 04/11] docs: Get rid of the badRAM guide

2016-10-26 Thread Mauro Carvalho Chehab
Em Wed, 26 Oct 2016 17:19:32 -0600 Jonathan Corbet escreveu: > The last release of this tool was for 2.6.28; it's hard to see how it has > any relevance to current kernels. I suspect that only the BadRAM data there is obsolete. Anyway, I'm fine if you want to remove this one. > > Signed-off-b

Re: [PATCH 05/11] docs: Get rid of the "basic profiling" guide

2016-10-26 Thread Mauro Carvalho Chehab
Em Wed, 26 Oct 2016 17:19:33 -0600 Jonathan Corbet escreveu: > The document has not been touched in over 11 years and doesn't reflect how > profiling is done in the perf era. I sent you an alternative patch for this one, but I'm OK if you want to just nuke this file. > > Signed-off-by: Jonatha

Re: [PATCH 06/11] docs: Get rid of the "bug-hunting" guide

2016-10-26 Thread Mauro Carvalho Chehab
Em Wed, 26 Oct 2016 17:19:34 -0600 Jonathan Corbet escreveu: > Larry McVoy's advice on how to manually bisect 1.3.x kernel bugs is of > historical interest, but that's what the repository is for. It is not > useful to users now. In the specific case of this file, I think that the information th

Re: [PATCH 07/11] docs: Apply some basic organization to the process guide

2016-10-26 Thread Mauro Carvalho Chehab
Em Wed, 26 Oct 2016 17:19:35 -0600 Jonathan Corbet escreveu: > Put like documents together, with the essential ones at the top, and split > the TOC into sections. > > Signed-off-by: Jonathan Corbet Looks good to me. Reviewed-by: Mauro Carvalho Chehab > --- > Documentation/process/changes.r

Re: [PATCH 08/11] docs: Tweak submitting-patches.rst formatting

2016-10-26 Thread Mauro Carvalho Chehab
Em Wed, 26 Oct 2016 17:19:36 -0600 Jonathan Corbet escreveu: > The main goal here was to get the subsections to show in the TOC as they do > for all the other documents. Also call out the DCO in the section title > since it's important. > > Signed-off-by: Jonathan Corbet Looks good to me. Re

Re: [PATCH 09/11] docs: Collapse the process guide TOC

2016-10-26 Thread Mauro Carvalho Chehab
Em Wed, 26 Oct 2016 17:19:37 -0600 Jonathan Corbet escreveu: > I believe this makes the page as a whole more approachable. Makes sense. Reviewed-by: Mauro Carvalho Chehab > > Signed-off-by: Jonathan Corbet > --- > Documentation/process/index.rst | 6 +++--- > 1 file changed, 3 insertions(+

Re: [PATCH 03/11] docs: Clean up and organize the admin guide a bit

2016-10-26 Thread Mauro Carvalho Chehab
Em Wed, 26 Oct 2016 17:19:31 -0600 Jonathan Corbet escreveu: > The admin guide is a good start, but it's time to turn it into something > better than an unordered blob of files. This is a first step in that > direction. The TOC has been split up and annotated, the guides have been > reordered,

Re: [PATCH 11/11] docs: Add a warning to applying-patches.rst

2016-10-26 Thread Mauro Carvalho Chehab
Em Wed, 26 Oct 2016 17:19:39 -0600 Jonathan Corbet escreveu: > This is ancient stuff and we don't do things this way anymore. In the > absence of simply deleting the document, at least add a warning to it. > > Signed-off-by: Jonathan Corbet > --- > Documentation/process/applying-patches.rst |

Re: [PATCH 10/11] docs: add a warning to submitting-drivers.rst

2016-10-26 Thread Mauro Carvalho Chehab
Em Wed, 26 Oct 2016 17:19:38 -0600 Jonathan Corbet escreveu: > This is crufty stuff and should maybe just be deleted, but I'm not quite > ready to do that yet. > > Signed-off-by: Jonathan Corbet > --- > Documentation/process/submitting-drivers.rst | 8 > 1 file changed, 8 insertions(+