Re: [PATCH 2/2] devicetree: hwmon: Add documentation for TMP108 driver.

2016-11-30 Thread John Muir
Hi Guenter, On Nov 30, 2016, at 4:42 PM, Guenter Roeck wrote: > >> +Optional node properties: >> +- ti,thermostat-mode-comparator : (boolean) select the comparator mode for >> the >> + thermostat rather than the default interrupt-mode. >> + > I keep arguing with myself over this. Ultimatel

Re: [PATCH v2 1/2] docs-rst: move the rules for svg and graphviz to Makefile.sphinx

2016-11-30 Thread Jonathan Corbet
On Mon, 21 Nov 2016 17:27:03 -0200 Mauro Carvalho Chehab wrote: > Not only media documents may have images. So, move the > rules for building images from graphviz and from SVG to > the Documentation makefile. So I tried applying this one, but... > LaTeX Warning: File `{media/typical_media_devic

Re: [PATCH v4 0/4] core-api ReST: assoc_array, atomic_ops, local_ops

2016-11-30 Thread Jonathan Corbet
On Mon, 28 Nov 2016 18:30:52 +0100 Silvio Fricke wrote: > Some more ReSTification of core-api's: assoc_array, atomic_ops and local_ops. > A > fourth patch removes a warning about a bullet list without ending at > firmware_class.c OK, I've merged patches 1-3. Peter, if you ever want to edit ato

Re: [PATCH 2/2] devicetree: hwmon: Add documentation for TMP108 driver.

2016-11-30 Thread Guenter Roeck
Hi John, On Wed, Nov 30, 2016 at 12:36:19PM -0800, John Muir wrote: > Simple hwmon binding documentation. > > Signed-off-by: John Muir > --- > Documentation/devicetree/bindings/hwmon/tmp108.txt | 24 > ++ > 1 file changed, 24 insertions(+) > create mode 100644 Documentatio

Re: [PATCH v2 00/10] Get rid of bitmap images

2016-11-30 Thread Jonathan Corbet
On Wed, 30 Nov 2016 08:00:10 -0200 Mauro Carvalho Chehab wrote: > The main goal of this patch series is to get rid of PNG images, using > either graphviz or SVG for images. OK, no build problems this time around... I've applied the set, thanks. It occurs to me that the documentation of the re

[PATCH 2/2] devicetree: hwmon: Add documentation for TMP108 driver.

2016-11-30 Thread John Muir
Simple hwmon binding documentation. Signed-off-by: John Muir --- Documentation/devicetree/bindings/hwmon/tmp108.txt | 24 ++ 1 file changed, 24 insertions(+) create mode 100644 Documentation/devicetree/bindings/hwmon/tmp108.txt diff --git a/Documentation/devicetree/bindings

[PATCH 1/2] hwmon: Add Texas Instruments TMP108 temperature sensor driver.

2016-11-30 Thread John Muir
Add support for the TI TMP108 temperature sensor with some device configuration parameters. Signed-off-by: John Muir --- Documentation/hwmon/tmp108 | 38 drivers/hwmon/Kconfig | 11 + drivers/hwmon/Makefile | 1 + drivers/hwmon/tmp108.c | 495 +++

[PATCH v2 0/2] Texas Instruments TMP108 temperature sensor driver.

2016-11-30 Thread John Muir
This adds a device driver for the Texas Instruments TMP108 temperature sensor. The driver provides support to read the temperature, read or modify the update interval, min and max temperature and hysteresis values, as well as read current alarm status. Support for alarm interrupts will come in a fu

[PATCH v6 2/9] misc: minimal mux subsystem and gpio-based mux controller

2016-11-30 Thread Peter Rosin
Add a new minimalistic subsystem that handles multiplexer controllers. When multiplexers are used in various places in the kernel, and the same multiplexer controller can be used for several independent things, there should be one place to implement support for said multiplexer controller. A singl

[PATCH v6 0/9] mux controller abstraction and iio/i2c muxes

2016-11-30 Thread Peter Rosin
Hi! v5 -> v6 changes - fix stupidity in mux_chip_priv, mux_gpio_remove and adg792a_remove. - change the devicetree bindings for the iio-mux to use a list of strings (channels property) instead of a list children. v4 -> v5 changes - remove support for fancier dt layouts and go back to the phandl

[PATCH v6 9/9] misc: mux-adg792a: add mux controller driver for ADG792A/G

2016-11-30 Thread Peter Rosin
Analog Devices ADG792A/G is a triple 4:1 mux. Signed-off-by: Peter Rosin --- drivers/misc/Kconfig | 12 drivers/misc/Makefile | 1 + drivers/misc/mux-adg792a.c | 154 + 3 files changed, 167 insertions(+) create mode 100644 drivers/m

[PATCH v6 3/9] iio: inkern: api for manipulating ext_info of iio channels

2016-11-30 Thread Peter Rosin
Extend the inkern api with functions for reading and writing ext_info of iio channels. Signed-off-by: Peter Rosin --- drivers/iio/inkern.c | 60 include/linux/iio/consumer.h | 37 +++ 2 files changed, 97 insertions(+)

[PATCH v6 4/9] dt-bindings: iio: iio-mux: document iio-mux bindings

2016-11-30 Thread Peter Rosin
Signed-off-by: Peter Rosin --- .../bindings/iio/multiplexer/iio-mux.txt | 40 ++ MAINTAINERS| 6 2 files changed, 46 insertions(+) create mode 100644 Documentation/devicetree/bindings/iio/multiplexer/iio-mux.txt diff -

[PATCH v6 7/9] i2c: i2c-mux-simple: new driver

2016-11-30 Thread Peter Rosin
This is a generic simple i2c mux that uses the generic multiplexer subsystem to do the muxing. The user can select if the mux is to be mux-locked and parent-locked as described in Documentation/i2c/i2c-topology. Signed-off-by: Peter Rosin --- drivers/i2c/muxes/Kconfig | 13 +++ driver

[PATCH v2 06/10] [media] docs-rst: replace bayer.png by a SVG image

2016-11-30 Thread Mauro Carvalho Chehab
SVG images are scalable, with makes easier to output on different formats. Signed-off-by: Mauro Carvalho Chehab --- Documentation/media/Makefile| 1 + Documentation/media/uapi/v4l/bayer.png | Bin 9725 -> 0 bytes Documentation/media/uapi/v4l/bayer.svg | 98

Re: [PATCH v6 4/9] dt-bindings: iio: iio-mux: document iio-mux bindings

2016-11-30 Thread Peter Rosin
Hi, v6 was apparently rushed a little bit too much, but I really wanted to supersede the stupidity I found elsewhere in v5. Perhaps I shouldn't have bolted on the changes for the iio-mux bindings, but so I did... On 2016-11-30 09:16, Peter Rosin wrote: > Signed-off-by: Peter Rosin > --- > .../b

[PATCH v2 00/10] Get rid of bitmap images

2016-11-30 Thread Mauro Carvalho Chehab
The main goal of this patch series is to get rid of PNG images, using either graphviz or SVG for images. I appended one unrelated patch in the end with some documentation changes for parse_headers.pl. In order to get rid of PNG, for old images generated with xfig, stored inside PDF, just convert

[PATCH v2 10/10] docs-rst: parse-headers.pl: cleanup the documentation

2016-11-30 Thread Mauro Carvalho Chehab
Keeping both rst and in-file documentation in sync can be harsh. So, simplify the script's internal documntation to a bare minimum, and add a mention to the ReST file with its full documentation. This way, a quick help is still available at the command line, while the complete one is maintained a

[PATCH v2 07/10] docs-rst: media: build SVG from graphviz files

2016-11-30 Thread Mauro Carvalho Chehab
Instead of keeping both SVG and graphviz files, dynamically build SVG from its graphviz sources. Signed-off-by: Mauro Carvalho Chehab --- Documentation/media/.gitignore| 2 + Documentation/media/Makefile | 20 ++--- Documentation/media/uapi/v4l/pipeline.svg | 68 ---

[PATCH v2 09/10] docs-rst: fix media cleandocs target

2016-11-30 Thread Mauro Carvalho Chehab
The builddir prefix was missing on make cleandocs. Fix it. Signed-off-by: Mauro Carvalho Chehab --- Documentation/Makefile.sphinx | 2 +- Documentation/media/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/Makefile.sphinx b/Documentation/Makefile.sp

[PATCH v2 04/10] [media] docs-rst: convert pipeline to SVG format

2016-11-30 Thread Mauro Carvalho Chehab
The pipeline image was produced from some dot file that has long missed. Create a pipeline.dot with the graph and convert it to SVG. As we're planning to add future support for graphviz graphics, also store the .dot file on the tree, as this will make easier when we add such Sphinx extension. Sign

[PATCH v2 08/10] docs-rst: media/Makefile: reorganize the rules

2016-11-30 Thread Mauro Carvalho Chehab
Better organize the media/Makefile, in order to better split what's related to image conversion from the ones related to parse-headers.pl. Signed-off-by: Mauro Carvalho Chehab --- Documentation/media/Makefile | 45 +++- 1 file changed, 24 insertions(+), 21

[PATCH v2 03/10] [media] docs-rst: nv12mt zigzag images: replace by SVG images

2016-11-30 Thread Mauro Carvalho Chehab
Instead of using bitmap images to show the zigzag macroblock parsing, replace it by a SVG ones, with is scalable. Signed-off-by: Mauro Carvalho Chehab --- Documentation/media/Makefile|2 + Documentation/media/uapi/v4l/nv12mt.png | Bin 1920 -> 0 bytes Documentati

[PATCH v6 6/9] dt-bindings: i2c: i2c-mux-simple: document i2c-mux-simple bindings

2016-11-30 Thread Peter Rosin
Signed-off-by: Peter Rosin --- .../devicetree/bindings/i2c/i2c-mux-simple.txt | 81 ++ 1 file changed, 81 insertions(+) create mode 100644 Documentation/devicetree/bindings/i2c/i2c-mux-simple.txt diff --git a/Documentation/devicetree/bindings/i2c/i2c-mux-simple.txt b/Do

[PATCH v6 5/9] iio: multiplexer: new iio category and iio-mux driver

2016-11-30 Thread Peter Rosin
When a multiplexer changes how an iio device behaves (for example by feeding different signals to an ADC), this driver can be used to create one virtual iio channel for each multiplexer state. Depends on the generic multiplexer subsystem. Cache any ext_info values from the parent iio channel, cre

[PATCH v6 8/9] dt-bindings: mux-adg792a: document devicetree bindings for ADG792A/G mux

2016-11-30 Thread Peter Rosin
Analog Devices ADG792A/G is a triple 4:1 mux. Signed-off-by: Peter Rosin --- .../devicetree/bindings/misc/mux-adg792a.txt | 64 ++ 1 file changed, 64 insertions(+) create mode 100644 Documentation/devicetree/bindings/misc/mux-adg792a.txt diff --git a/Documentation/dev

[PATCH v6 1/9] dt-bindings: document devicetree bindings for mux-controllers and mux-gpio

2016-11-30 Thread Peter Rosin
Signed-off-by: Peter Rosin --- .../devicetree/bindings/misc/mux-controller.txt| 127 + .../devicetree/bindings/misc/mux-gpio.txt | 68 +++ MAINTAINERS| 5 + 3 files changed, 200 insertions(+) create mode 100644 D

Re: [PATCH 0/9] Get rid of bitmap images

2016-11-30 Thread Mauro Carvalho Chehab
Em Mon, 28 Nov 2016 18:09:46 -0700 Jonathan Corbet escreveu: > On Sun, 20 Nov 2016 14:08:31 -0200 > Mauro Carvalho Chehab wrote: > > > The goal of this patch series is to get rid of PNG images, using either > > graphviz > > or SVG for images. > > So the pdfdocs build fails with an error whe

Re: [PATCH 3/3] ARM: dts: sunxi: enable SDIO Wi-Fi on Orange Pi Zero

2016-11-30 Thread Andre Przywara
Hi, On 29/11/16 10:19, Icenowy Zheng wrote: > > 2016年11月29日 15:16于 Alexey Kardashevskiy 写道: >> >> >> >> On Wed, Nov 23, 2016 at 6:59 PM, Maxime Ripard > wrote: >>> >>> Hi, >>> >>> On Tue, Nov 22, 2016 at 12:24:21AM +0800, Icenowy Zheng wrote: >>> > There's a Allwinner's XR819 SDIO Wi-Fi module s

Re: [PATCH v6 4/9] dt-bindings: iio: iio-mux: document iio-mux bindings

2016-11-30 Thread Peter Rosin
On 2016-11-30 09:52, Peter Rosin wrote: > I'm holding off v7 pending more important changes. Err, crap. That was ambiguous. I do not know of any important changes to make, but please review so that important changes can be discovered! Cheers, Peter -- To unsubscribe from this list: send the line