public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/4] i2c: move client binding docs to proper place
@ 2015-08-08 18:30 Wolfram Sang
  2015-08-08 18:30 ` [PATCH 1/4] rtc: bq32k: move " Wolfram Sang
                   ` (4 more replies)
  0 siblings, 5 replies; 10+ messages in thread
From: Wolfram Sang @ 2015-08-08 18:30 UTC (permalink / raw)
  To: linux-i2c; +Cc: linux-kernel, lm-sensors, Wolfram Sang

The I2C binding directory is for master controllers, muxes and alike. Not for
client drivers. Move those who slipped in to their proper places.

I'd like to take these patches via my tree, so it is promptly cleaned up in one
go. So, I am mainly asking for acks here.

Thanks,

   Wolfram

Wolfram Sang (4):
  rtc: bq32k: move binding docs to proper place
  hwmon: max6697: move binding docs to proper place
  hwmon: ina2xx: move binding docs to proper place
  hwmon: ina209: move binding docs to proper place

 Documentation/devicetree/bindings/{i2c => hwmon}/ina209.txt  | 0
 Documentation/devicetree/bindings/{i2c => hwmon}/ina2xx.txt  | 0
 Documentation/devicetree/bindings/{i2c => hwmon}/max6697.txt | 0
 Documentation/devicetree/bindings/{i2c => rtc}/ti,bq32k.txt  | 0
 4 files changed, 0 insertions(+), 0 deletions(-)
 rename Documentation/devicetree/bindings/{i2c => hwmon}/ina209.txt (100%)
 rename Documentation/devicetree/bindings/{i2c => hwmon}/ina2xx.txt (100%)
 rename Documentation/devicetree/bindings/{i2c => hwmon}/max6697.txt (100%)
 rename Documentation/devicetree/bindings/{i2c => rtc}/ti,bq32k.txt (100%)

-- 
2.1.4


^ permalink raw reply	[flat|nested] 10+ messages in thread

* [PATCH 1/4] rtc: bq32k: move binding docs to proper place
  2015-08-08 18:30 [PATCH 0/4] i2c: move client binding docs to proper place Wolfram Sang
@ 2015-08-08 18:30 ` Wolfram Sang
  2015-08-08 21:50   ` Pavel Machek
  2015-08-08 18:30 ` [PATCH 2/4] hwmon: max6697: " Wolfram Sang
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 10+ messages in thread
From: Wolfram Sang @ 2015-08-08 18:30 UTC (permalink / raw)
  To: linux-i2c
  Cc: linux-kernel, lm-sensors, Wolfram Sang, Pavel Machek,
	Jason Cooper

The I2C dir is not for I2C client devices! Move it to the proper folder.

Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Cc: Pavel Machek <pavel@denx.de>
Cc: Jason Cooper <jason@lakedameon.net>
---
 Documentation/devicetree/bindings/{i2c => rtc}/ti,bq32k.txt | 0
 1 file changed, 0 insertions(+), 0 deletions(-)
 rename Documentation/devicetree/bindings/{i2c => rtc}/ti,bq32k.txt (100%)

diff --git a/Documentation/devicetree/bindings/i2c/ti,bq32k.txt b/Documentation/devicetree/bindings/rtc/ti,bq32k.txt
similarity index 100%
rename from Documentation/devicetree/bindings/i2c/ti,bq32k.txt
rename to Documentation/devicetree/bindings/rtc/ti,bq32k.txt
-- 
2.1.4


^ permalink raw reply	[flat|nested] 10+ messages in thread

* [PATCH 2/4] hwmon: max6697: move binding docs to proper place
  2015-08-08 18:30 [PATCH 0/4] i2c: move client binding docs to proper place Wolfram Sang
  2015-08-08 18:30 ` [PATCH 1/4] rtc: bq32k: move " Wolfram Sang
@ 2015-08-08 18:30 ` Wolfram Sang
  2015-08-08 20:47   ` Guenter Roeck
  2015-08-08 18:30 ` [PATCH 3/4] hwmon: ina2xx: " Wolfram Sang
                   ` (2 subsequent siblings)
  4 siblings, 1 reply; 10+ messages in thread
From: Wolfram Sang @ 2015-08-08 18:30 UTC (permalink / raw)
  To: linux-i2c; +Cc: linux-kernel, lm-sensors, Wolfram Sang, Guenter Roeck

The I2C dir is not for I2C client devices! Move it to the proper folder.

Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Cc: Guenter Roeck <linux@roeck-us.net>
---
 Documentation/devicetree/bindings/{i2c => hwmon}/max6697.txt | 0
 1 file changed, 0 insertions(+), 0 deletions(-)
 rename Documentation/devicetree/bindings/{i2c => hwmon}/max6697.txt (100%)

diff --git a/Documentation/devicetree/bindings/i2c/max6697.txt b/Documentation/devicetree/bindings/hwmon/max6697.txt
similarity index 100%
rename from Documentation/devicetree/bindings/i2c/max6697.txt
rename to Documentation/devicetree/bindings/hwmon/max6697.txt
-- 
2.1.4


^ permalink raw reply	[flat|nested] 10+ messages in thread

* [PATCH 3/4] hwmon: ina2xx: move binding docs to proper place
  2015-08-08 18:30 [PATCH 0/4] i2c: move client binding docs to proper place Wolfram Sang
  2015-08-08 18:30 ` [PATCH 1/4] rtc: bq32k: move " Wolfram Sang
  2015-08-08 18:30 ` [PATCH 2/4] hwmon: max6697: " Wolfram Sang
@ 2015-08-08 18:30 ` Wolfram Sang
  2015-08-08 20:48   ` Guenter Roeck
  2015-08-08 18:30 ` [PATCH 4/4] hwmon: ina209: " Wolfram Sang
  2015-08-09  7:09 ` [PATCH 0/4] i2c: move client " Wolfram Sang
  4 siblings, 1 reply; 10+ messages in thread
From: Wolfram Sang @ 2015-08-08 18:30 UTC (permalink / raw)
  To: linux-i2c; +Cc: linux-kernel, lm-sensors, Wolfram Sang, Guenter Roeck

The I2C dir is not for I2C client devices! Move it to the proper folder.

Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Cc: Guenter Roeck <linux@roeck-us.net>
---
 Documentation/devicetree/bindings/{i2c => hwmon}/ina2xx.txt | 0
 1 file changed, 0 insertions(+), 0 deletions(-)
 rename Documentation/devicetree/bindings/{i2c => hwmon}/ina2xx.txt (100%)

diff --git a/Documentation/devicetree/bindings/i2c/ina2xx.txt b/Documentation/devicetree/bindings/hwmon/ina2xx.txt
similarity index 100%
rename from Documentation/devicetree/bindings/i2c/ina2xx.txt
rename to Documentation/devicetree/bindings/hwmon/ina2xx.txt
-- 
2.1.4


^ permalink raw reply	[flat|nested] 10+ messages in thread

* [PATCH 4/4] hwmon: ina209: move binding docs to proper place
  2015-08-08 18:30 [PATCH 0/4] i2c: move client binding docs to proper place Wolfram Sang
                   ` (2 preceding siblings ...)
  2015-08-08 18:30 ` [PATCH 3/4] hwmon: ina2xx: " Wolfram Sang
@ 2015-08-08 18:30 ` Wolfram Sang
  2015-08-08 20:48   ` Guenter Roeck
  2015-08-09  7:09 ` [PATCH 0/4] i2c: move client " Wolfram Sang
  4 siblings, 1 reply; 10+ messages in thread
From: Wolfram Sang @ 2015-08-08 18:30 UTC (permalink / raw)
  To: linux-i2c; +Cc: linux-kernel, lm-sensors, Wolfram Sang, Guenter Roeck

The I2C dir is not for I2C client devices! Move it to the proper folder.

Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Cc: Guenter Roeck <linux@roeck-us.net>
---
 Documentation/devicetree/bindings/{i2c => hwmon}/ina209.txt | 0
 1 file changed, 0 insertions(+), 0 deletions(-)
 rename Documentation/devicetree/bindings/{i2c => hwmon}/ina209.txt (100%)

diff --git a/Documentation/devicetree/bindings/i2c/ina209.txt b/Documentation/devicetree/bindings/hwmon/ina209.txt
similarity index 100%
rename from Documentation/devicetree/bindings/i2c/ina209.txt
rename to Documentation/devicetree/bindings/hwmon/ina209.txt
-- 
2.1.4


^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH 2/4] hwmon: max6697: move binding docs to proper place
  2015-08-08 18:30 ` [PATCH 2/4] hwmon: max6697: " Wolfram Sang
@ 2015-08-08 20:47   ` Guenter Roeck
  0 siblings, 0 replies; 10+ messages in thread
From: Guenter Roeck @ 2015-08-08 20:47 UTC (permalink / raw)
  To: Wolfram Sang, linux-i2c; +Cc: linux-kernel, lm-sensors

On 08/08/2015 11:30 AM, Wolfram Sang wrote:
> The I2C dir is not for I2C client devices! Move it to the proper folder.
>
> Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
> Cc: Guenter Roeck <linux@roeck-us.net>

Acked-by: Guenter Roeck <linux@roeck-us.net>


^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH 3/4] hwmon: ina2xx: move binding docs to proper place
  2015-08-08 18:30 ` [PATCH 3/4] hwmon: ina2xx: " Wolfram Sang
@ 2015-08-08 20:48   ` Guenter Roeck
  0 siblings, 0 replies; 10+ messages in thread
From: Guenter Roeck @ 2015-08-08 20:48 UTC (permalink / raw)
  To: Wolfram Sang, linux-i2c; +Cc: linux-kernel, lm-sensors

On 08/08/2015 11:30 AM, Wolfram Sang wrote:
> The I2C dir is not for I2C client devices! Move it to the proper folder.
>
> Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
> Cc: Guenter Roeck <linux@roeck-us.net>

Acked-by: Guenter Roeck <linux@roeck-us.net>


^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH 4/4] hwmon: ina209: move binding docs to proper place
  2015-08-08 18:30 ` [PATCH 4/4] hwmon: ina209: " Wolfram Sang
@ 2015-08-08 20:48   ` Guenter Roeck
  0 siblings, 0 replies; 10+ messages in thread
From: Guenter Roeck @ 2015-08-08 20:48 UTC (permalink / raw)
  To: Wolfram Sang, linux-i2c; +Cc: linux-kernel, lm-sensors

On 08/08/2015 11:30 AM, Wolfram Sang wrote:
> The I2C dir is not for I2C client devices! Move it to the proper folder.
>
> Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
> Cc: Guenter Roeck <linux@roeck-us.net>

Acked-by: Guenter Roeck <linux@roeck-us.net>


^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH 1/4] rtc: bq32k: move binding docs to proper place
  2015-08-08 18:30 ` [PATCH 1/4] rtc: bq32k: move " Wolfram Sang
@ 2015-08-08 21:50   ` Pavel Machek
  0 siblings, 0 replies; 10+ messages in thread
From: Pavel Machek @ 2015-08-08 21:50 UTC (permalink / raw)
  To: Wolfram Sang; +Cc: linux-i2c, linux-kernel, lm-sensors, Jason Cooper

On Sat 2015-08-08 20:30:33, Wolfram Sang wrote:
> The I2C dir is not for I2C client devices! Move it to the proper folder.
> 
> Signed-off-by: Wolfram Sang <wsa@the-dreams.de>

Acked-by: Pavel Machek <pavel@denx.de>

> diff --git a/Documentation/devicetree/bindings/i2c/ti,bq32k.txt b/Documentation/devicetree/bindings/rtc/ti,bq32k.txt
> similarity index 100%
> rename from Documentation/devicetree/bindings/i2c/ti,bq32k.txt
> rename to Documentation/devicetree/bindings/rtc/ti,bq32k.txt

-- 
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH 0/4] i2c: move client binding docs to proper place
  2015-08-08 18:30 [PATCH 0/4] i2c: move client binding docs to proper place Wolfram Sang
                   ` (3 preceding siblings ...)
  2015-08-08 18:30 ` [PATCH 4/4] hwmon: ina209: " Wolfram Sang
@ 2015-08-09  7:09 ` Wolfram Sang
  4 siblings, 0 replies; 10+ messages in thread
From: Wolfram Sang @ 2015-08-09  7:09 UTC (permalink / raw)
  To: linux-i2c; +Cc: linux-kernel, lm-sensors

[-- Attachment #1: Type: text/plain, Size: 412 bytes --]

On Sat, Aug 08, 2015 at 08:30:32PM +0200, Wolfram Sang wrote:
> The I2C binding directory is for master controllers, muxes and alike. Not for
> client drivers. Move those who slipped in to their proper places.
> 
> I'd like to take these patches via my tree, so it is promptly cleaned up in one
> go. So, I am mainly asking for acks here.

Thanks for the acks. Applied this series to for-next, thanks!


[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2015-08-09  7:09 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-08 18:30 [PATCH 0/4] i2c: move client binding docs to proper place Wolfram Sang
2015-08-08 18:30 ` [PATCH 1/4] rtc: bq32k: move " Wolfram Sang
2015-08-08 21:50   ` Pavel Machek
2015-08-08 18:30 ` [PATCH 2/4] hwmon: max6697: " Wolfram Sang
2015-08-08 20:47   ` Guenter Roeck
2015-08-08 18:30 ` [PATCH 3/4] hwmon: ina2xx: " Wolfram Sang
2015-08-08 20:48   ` Guenter Roeck
2015-08-08 18:30 ` [PATCH 4/4] hwmon: ina209: " Wolfram Sang
2015-08-08 20:48   ` Guenter Roeck
2015-08-09  7:09 ` [PATCH 0/4] i2c: move client " Wolfram Sang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox