Re: [RFC 3/5] dt-bindings: i3c: Document core bindings

2017-08-10 Thread Boris Brezillon
Hi Rob, Le Wed, 9 Aug 2017 18:43:02 -0500, Rob Herring a écrit : > On Mon, Jul 31, 2017 at 06:24:48PM +0200, Boris Brezillon wrote: > > A new I3C subsystem has been added and a generic description has been > > created to represent the I3C bus and the devices connected on it. > > > > Document th

Re: [Linux-ima-devel] [PATCH, RESEND 08/12] ima: added parser for RPM data type

2017-08-10 Thread Mimi Zohar
On Wed, 2017-08-09 at 19:18 +0200, Roberto Sassu wrote: > On 8/9/2017 4:30 PM, Mimi Zohar wrote: > > On Wed, 2017-08-09 at 11:15 +0200, Roberto Sassu wrote: > >> On 8/2/2017 9:22 AM, James Morris wrote: > >>> On Tue, 1 Aug 2017, Roberto Sassu wrote: > >>> > On 8/1/2017 12:27 PM, Christoph Hell

Re: [PATCH] Document:add Chinese translation of rfkill.txt

2017-08-10 Thread Weiwei Jia
2017-08-09 10:25 GMT-04:00 : > > From: "guohao.w" > > Signed-off-by: guohao.w > --- > Documentation/translations/zh_CN/rfkill.txt | 117 > > 1 file changed, 117 insertions(+) > create mode 100644 Documentation/translations/zh_CN/rfkill.txt > > diff --git a/Document

Re: [PATCH v2 1/4] ipmi: bt-i2c: added documentation for bt-i2c drivers

2017-08-10 Thread Rob Herring
On Fri, Aug 04, 2017 at 06:18:52PM -0700, Brendan Higgins wrote: > Added device tree binding documentation for ipmi-bt-i2c (host) and > ipmi-bmc-bt-i2c (BMC) and documentation for the Block Transfer over I2C > (bt-i2c) protocol. Please split the bindings to a separate patch. > > Signed-off-by: B

[PATCH v5] printk: Add monotonic, boottime, and realtime timestamps

2017-08-10 Thread Prarit Bhargava
printk.time=1/CONFIG_PRINTK_TIME=1 adds a unmodified local hardware clock timestamp to printk messages. The local hardware clock loses time each day making it difficult to determine exactly when an issue has occurred in the kernel log, and making it difficult to determine how kernel and hardware i

Re: [PATCH] doc: linux-wpan: Change the old function names to the lastest function names

2017-08-10 Thread Jonathan Corbet
On Mon, 7 Aug 2017 00:28:29 +0800 Jian-Hong Pan wrote: > The function declaration in the lastest include/net/mac802154.h has been > changed since v3.19. > > ieee802154_alloc_device => ieee802154_alloc_hw > ieee802154_free_device => ieee802154_free_hw > ieee802154_register_device => ieee802154_r

[PATCH v2 0/3] hwmon: (pmbus): Add POWER System power supply driver

2017-08-10 Thread Eddie James
From: "Edward A. James" This series adds a hwmon pmbus driver for a POWER System power supply. The core monitoring functionality is provided by pmbus. This series depends on the pmbus core extensions for debugfs recently submitted to the mailing list (latest: https://lkml.org/lkml/2017/8/10/881)

[PATCH v2 3/3] Documentation: hwmon: Add POWER system power supply documentation

2017-08-10 Thread Eddie James
From: "Edward A. James" Signed-off-by: Edward A. James --- Documentation/hwmon/powerps | 54 + 1 file changed, 54 insertions(+) create mode 100644 Documentation/hwmon/powerps diff --git a/Documentation/hwmon/powerps b/Documentation/hwmon/powerps new

[PATCH v2 1/3] dt-bindings: i2c: Document the POWER system power supply device

2017-08-10 Thread Eddie James
From: "Edward A. James" Signed-off-by: Edward A. James --- .../devicetree/bindings/i2c/ibm,power-ps.txt| 21 + 1 file changed, 21 insertions(+) create mode 100644 Documentation/devicetree/bindings/i2c/ibm,power-ps.txt diff --git a/Documentation/devicetree/bindings/

[PATCH v2 2/3] hwmon: (pmbus): Add POWER system power supply driver

2017-08-10 Thread Eddie James
From: "Edward A. James" Add the driver to monitor POWER system power supplies with hwmon over pmbus. Signed-off-by: Edward A. James --- drivers/hwmon/pmbus/Kconfig | 10 +++ drivers/hwmon/pmbus/Makefile | 1 + drivers/hwmon/pmbus/powerps.c | 144 ++

[PATCH 3/3] media: compat32: reimplement ctrl_is_pointer()

2017-08-10 Thread Mauro Carvalho Chehab
The current way that this function works is subject to problems as new controls gets added. Move it to v4l2-ctrls and use the knowledge that v4l2_ctrl_fill() has about controls, in order to detect if a given control is a pointer. Signed-off-by: Mauro Carvalho Chehab --- drivers/media/v4l2-core/v

[PATCH 1/3] media: v4l2-ctrls.h: better document the arguments for v4l2_ctrl_fill

2017-08-10 Thread Mauro Carvalho Chehab
The arguments for this function are pointers. Make it clear at its documentation. Signed-off-by: Mauro Carvalho Chehab --- include/media/v4l2-ctrls.h | 18 +- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/include/media/v4l2-ctrls.h b/include/media/v4l2-ctrls.h ind

[PATCH 0/3] v4l2-compat-ioctl32.c: better detect pointer controls

2017-08-10 Thread Mauro Carvalho Chehab
In the past, only string controls were pointers. That changed when compounded types got added, but the compat32 code was not updated. We could just add those controls there, but maintaining it is flaw, as we often forget about the compat code. So, instead, rely on the control type, as this is alwa

[PATCH 2/3] media: v4l2-ctrls: prepare the function to be used by compat32 code

2017-08-10 Thread Mauro Carvalho Chehab
Right now, both v4l2_ctrl_fill() and compat32 code need to know the type of the control. As new controls are added, this cause troubles at compat32, as it won't be able to discover what functions are pointers or not. Change v4l2_ctrl_fill() function for it to be called with just one argument: the

Re: [PATCH 0/3] v4l2-compat-ioctl32.c: better detect pointer controls

2017-08-10 Thread Mauro Carvalho Chehab
Em Thu, 10 Aug 2017 20:45:10 -0300 Mauro Carvalho Chehab escreveu: > In the past, only string controls were pointers. That changed when compounded > types got added, but the compat32 code was not updated. > > We could just add those controls there, but maintaining it is flaw, as we > often forge

Re: [PATCH v2 2/3] hwmon: (pmbus): Add POWER system power supply driver

2017-08-10 Thread Guenter Roeck
On Thu, Aug 10, 2017 at 05:19:45PM -0500, Eddie James wrote: > From: "Edward A. James" > > Add the driver to monitor POWER system power supplies with hwmon over > pmbus. > > Signed-off-by: Edward A. James > --- > drivers/hwmon/pmbus/Kconfig | 10 +++ > drivers/hwmon/pmbus/Makefile | 1 +

Re: [PATCH v2 3/3] Documentation: hwmon: Add POWER system power supply documentation

2017-08-10 Thread Guenter Roeck
On Thu, Aug 10, 2017 at 05:19:46PM -0500, Eddie James wrote: > From: "Edward A. James" > > Signed-off-by: Edward A. James > --- > Documentation/hwmon/powerps | 54 > + > 1 file changed, 54 insertions(+) > create mode 100644 Documentation/hwmon/power