All of lore.kernel.org
 help / color / mirror / Atom feed
* [lm-sensors] [GIT PULL] hwmon updates for 3.19
@ 2014-12-09  4:01 ` Guenter Roeck
  0 siblings, 0 replies; 8+ messages in thread
From: Guenter Roeck @ 2014-12-09  4:01 UTC (permalink / raw)
  To: torvalds; +Cc: linux-kernel, lm-sensors

Hi Linus,

Please pull hwmon updates for Linux 3.19 from signed tag:

    git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git hwmon-for-linus-v3.19

Thanks,
Guenter
------

The following changes since commit 009d0431c3914de64666bec0d350e54fdd59df6a:

  Linux 3.18-rc7 (2014-11-30 16:42:27 -0800)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git tags/hwmon-for-linus-3.19

for you to fetch changes up to 907a6d5824599d09e986105a5a880d119a996c4b:

  hwmon: (tmp401) Detect TMP435 on all addresses it supports (2014-12-08 06:48:37 -0800)

----------------------------------------------------------------
Notable changes:
New driver for NCT7802Y
Add support for TMP435, LM95233, LM95235, NCT6792D, and NXP LM75B
Add regulator support for PMBus chips, specifically LTX2978
Add support for humidity sensors to iio-hwmon bridge driver

----------------------------------------------------------------
Alan Tull (4):
      hwmon: (ltc2978) device tree bindings documentation
      hwmon: (pmbus) add helpers for byte write and read modify write
      hwmon: (pmbus) Add regulator support
      hwmon: (ltc2978) Add regulator support

Axel Lin (1):
      hwmon: (ibmpowernv) Convert to module_platform_driver

Bartosz Golaszewski (2):
      hwmon: (ina2xx) bail-out from ina2xx_probe() in case of configuration errors
      hwmon: (tmp401) Bail out from tmp401_probe() in case of write errors

Guenter Roeck (9):
      hwmon: (iio_hwmon) Add support for humidity sensors
      hwmon: Driver for Nuvoton NCT7802Y
      hwmon: (nct6775) Documentation updates
      hwmon: (nct6775) Add support for NCT6792D
      hwmon: (nct6775) Add blank lines after declarations
      hwmon: (lm95245) Add support for LM95235
      hwmon: (lm95234) Add support for LM95233
      hwmon: (lm75) Strengthen detect function
      hwmon: (tmp401) Detect TMP435 on all addresses it supports

Michael Thalmeier (1):
      hwmon: (lm75) Add support for the NXP LM75B

Neelesh Gupta (1):
      hwmon: (ibmpowernv) Use platform 'id_table' to probe the device

Nishanth Menon (2):
      hwmon: (gpio-fan) Allow usage of gpio operations that may sleep
      hwmon: (gpio-fan) Add a shutdown handler to poweroff the fans

Patrick Titiano (1):
      hwmon: (tmp401) Add support for TI TMP435

 .../devicetree/bindings/hwmon/ltc2978.txt          |  39 +
 Documentation/hwmon/lm75                           |   5 +
 Documentation/hwmon/lm95234                        |  15 +-
 Documentation/hwmon/lm95245                        |  14 +-
 Documentation/hwmon/nct6775                        |  14 +-
 Documentation/hwmon/nct7802                        |  32 +
 Documentation/hwmon/tmp401                         |   8 +-
 arch/powerpc/platforms/powernv/opal-sensor.c       |  20 +
 drivers/hwmon/Kconfig                              |  28 +-
 drivers/hwmon/Makefile                             |   1 +
 drivers/hwmon/gpio-fan.c                           |  18 +-
 drivers/hwmon/ibmpowernv.c                         |  78 +-
 drivers/hwmon/iio_hwmon.c                          |   7 +-
 drivers/hwmon/ina2xx.c                             |  26 +-
 drivers/hwmon/lm75.c                               |  12 +
 drivers/hwmon/lm95234.c                            |  91 ++-
 drivers/hwmon/lm95245.c                            |  41 +-
 drivers/hwmon/nct6775.c                            |  77 +-
 drivers/hwmon/nct7802.c                            | 860 +++++++++++++++++++++
 drivers/hwmon/pmbus/Kconfig                        |  11 +-
 drivers/hwmon/pmbus/ltc2978.c                      |  39 +-
 drivers/hwmon/pmbus/pmbus.h                        |  30 +
 drivers/hwmon/pmbus/pmbus_core.c                   | 118 +++
 drivers/hwmon/tmp401.c                             |  42 +-
 include/linux/i2c/pmbus.h                          |   4 +
 25 files changed, 1465 insertions(+), 165 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/hwmon/ltc2978.txt
 create mode 100644 Documentation/hwmon/nct7802
 create mode 100644 drivers/hwmon/nct7802.c

_______________________________________________
lm-sensors mailing list
lm-sensors@lm-sensors.org
http://lists.lm-sensors.org/mailman/listinfo/lm-sensors

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

* [GIT PULL] hwmon updates for 3.19
@ 2014-12-09  4:01 ` Guenter Roeck
  0 siblings, 0 replies; 8+ messages in thread
From: Guenter Roeck @ 2014-12-09  4:01 UTC (permalink / raw)
  To: torvalds; +Cc: linux-kernel, lm-sensors

Hi Linus,

Please pull hwmon updates for Linux 3.19 from signed tag:

    git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git hwmon-for-linus-v3.19

Thanks,
Guenter
------

The following changes since commit 009d0431c3914de64666bec0d350e54fdd59df6a:

  Linux 3.18-rc7 (2014-11-30 16:42:27 -0800)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git tags/hwmon-for-linus-3.19

for you to fetch changes up to 907a6d5824599d09e986105a5a880d119a996c4b:

  hwmon: (tmp401) Detect TMP435 on all addresses it supports (2014-12-08 06:48:37 -0800)

----------------------------------------------------------------
Notable changes:
New driver for NCT7802Y
Add support for TMP435, LM95233, LM95235, NCT6792D, and NXP LM75B
Add regulator support for PMBus chips, specifically LTX2978
Add support for humidity sensors to iio-hwmon bridge driver

----------------------------------------------------------------
Alan Tull (4):
      hwmon: (ltc2978) device tree bindings documentation
      hwmon: (pmbus) add helpers for byte write and read modify write
      hwmon: (pmbus) Add regulator support
      hwmon: (ltc2978) Add regulator support

Axel Lin (1):
      hwmon: (ibmpowernv) Convert to module_platform_driver

Bartosz Golaszewski (2):
      hwmon: (ina2xx) bail-out from ina2xx_probe() in case of configuration errors
      hwmon: (tmp401) Bail out from tmp401_probe() in case of write errors

Guenter Roeck (9):
      hwmon: (iio_hwmon) Add support for humidity sensors
      hwmon: Driver for Nuvoton NCT7802Y
      hwmon: (nct6775) Documentation updates
      hwmon: (nct6775) Add support for NCT6792D
      hwmon: (nct6775) Add blank lines after declarations
      hwmon: (lm95245) Add support for LM95235
      hwmon: (lm95234) Add support for LM95233
      hwmon: (lm75) Strengthen detect function
      hwmon: (tmp401) Detect TMP435 on all addresses it supports

Michael Thalmeier (1):
      hwmon: (lm75) Add support for the NXP LM75B

Neelesh Gupta (1):
      hwmon: (ibmpowernv) Use platform 'id_table' to probe the device

Nishanth Menon (2):
      hwmon: (gpio-fan) Allow usage of gpio operations that may sleep
      hwmon: (gpio-fan) Add a shutdown handler to poweroff the fans

Patrick Titiano (1):
      hwmon: (tmp401) Add support for TI TMP435

 .../devicetree/bindings/hwmon/ltc2978.txt          |  39 +
 Documentation/hwmon/lm75                           |   5 +
 Documentation/hwmon/lm95234                        |  15 +-
 Documentation/hwmon/lm95245                        |  14 +-
 Documentation/hwmon/nct6775                        |  14 +-
 Documentation/hwmon/nct7802                        |  32 +
 Documentation/hwmon/tmp401                         |   8 +-
 arch/powerpc/platforms/powernv/opal-sensor.c       |  20 +
 drivers/hwmon/Kconfig                              |  28 +-
 drivers/hwmon/Makefile                             |   1 +
 drivers/hwmon/gpio-fan.c                           |  18 +-
 drivers/hwmon/ibmpowernv.c                         |  78 +-
 drivers/hwmon/iio_hwmon.c                          |   7 +-
 drivers/hwmon/ina2xx.c                             |  26 +-
 drivers/hwmon/lm75.c                               |  12 +
 drivers/hwmon/lm95234.c                            |  91 ++-
 drivers/hwmon/lm95245.c                            |  41 +-
 drivers/hwmon/nct6775.c                            |  77 +-
 drivers/hwmon/nct7802.c                            | 860 +++++++++++++++++++++
 drivers/hwmon/pmbus/Kconfig                        |  11 +-
 drivers/hwmon/pmbus/ltc2978.c                      |  39 +-
 drivers/hwmon/pmbus/pmbus.h                        |  30 +
 drivers/hwmon/pmbus/pmbus_core.c                   | 118 +++
 drivers/hwmon/tmp401.c                             |  42 +-
 include/linux/i2c/pmbus.h                          |   4 +
 25 files changed, 1465 insertions(+), 165 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/hwmon/ltc2978.txt
 create mode 100644 Documentation/hwmon/nct7802
 create mode 100644 drivers/hwmon/nct7802.c

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

* Re: [lm-sensors] [GIT PULL] hwmon updates for 3.19
  2014-12-09  4:01 ` Guenter Roeck
@ 2014-12-09  4:32   ` Linus Torvalds
  -1 siblings, 0 replies; 8+ messages in thread
From: Linus Torvalds @ 2014-12-09  4:32 UTC (permalink / raw)
  To: Guenter Roeck; +Cc: Linux Kernel Mailing List, lm-sensors@lm-sensors.org

On Mon, Dec 8, 2014 at 8:01 PM, Guenter Roeck <linux@roeck-us.net> wrote:
>
> Please pull hwmon updates for Linux 3.19 from signed tag:
>
>     git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git hwmon-for-linus-v3.19

Yeah, no, that doesn't exist.

But this does:

>   git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git tags/hwmon-for-linus-3.19

Notice the 'v' (or lack-there-of). It took me a while to notice that
your two tag-names weren't actually the same.

                  Linus

_______________________________________________
lm-sensors mailing list
lm-sensors@lm-sensors.org
http://lists.lm-sensors.org/mailman/listinfo/lm-sensors

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

* Re: [GIT PULL] hwmon updates for 3.19
@ 2014-12-09  4:32   ` Linus Torvalds
  0 siblings, 0 replies; 8+ messages in thread
From: Linus Torvalds @ 2014-12-09  4:32 UTC (permalink / raw)
  To: Guenter Roeck; +Cc: Linux Kernel Mailing List, lm-sensors@lm-sensors.org

On Mon, Dec 8, 2014 at 8:01 PM, Guenter Roeck <linux@roeck-us.net> wrote:
>
> Please pull hwmon updates for Linux 3.19 from signed tag:
>
>     git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git hwmon-for-linus-v3.19

Yeah, no, that doesn't exist.

But this does:

>   git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git tags/hwmon-for-linus-3.19

Notice the 'v' (or lack-there-of). It took me a while to notice that
your two tag-names weren't actually the same.

                  Linus

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

* Re: [lm-sensors] [GIT PULL] hwmon updates for 3.19
  2014-12-09  4:01 ` Guenter Roeck
@ 2014-12-09  4:37   ` Stephen Rothwell
  -1 siblings, 0 replies; 8+ messages in thread
From: Stephen Rothwell @ 2014-12-09  4:37 UTC (permalink / raw)
  To: Guenter Roeck; +Cc: torvalds, linux-kernel, lm-sensors


[-- Attachment #1.1: Type: text/plain, Size: 558 bytes --]

Hi Guenter,

On Mon,  8 Dec 2014 20:01:44 -0800 Guenter Roeck <linux@roeck-us.net> wrote:
>
> Please pull hwmon updates for Linux 3.19 from signed tag:
> 
>     git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git hwmon-for-linus-v3.19

This does not match

> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git tags/hwmon-for-linus-3.19

this ('v' difference - the latter exists) ...

-- 
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au

[-- Attachment #1.2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

[-- Attachment #2: Type: text/plain, Size: 153 bytes --]

_______________________________________________
lm-sensors mailing list
lm-sensors@lm-sensors.org
http://lists.lm-sensors.org/mailman/listinfo/lm-sensors

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

* Re: [GIT PULL] hwmon updates for 3.19
@ 2014-12-09  4:37   ` Stephen Rothwell
  0 siblings, 0 replies; 8+ messages in thread
From: Stephen Rothwell @ 2014-12-09  4:37 UTC (permalink / raw)
  To: Guenter Roeck; +Cc: torvalds, linux-kernel, lm-sensors

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

Hi Guenter,

On Mon,  8 Dec 2014 20:01:44 -0800 Guenter Roeck <linux@roeck-us.net> wrote:
>
> Please pull hwmon updates for Linux 3.19 from signed tag:
> 
>     git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git hwmon-for-linus-v3.19

This does not match

> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git tags/hwmon-for-linus-3.19

this ('v' difference - the latter exists) ...

-- 
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au

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

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

* Re: [lm-sensors] [GIT PULL] hwmon updates for 3.19
  2014-12-09  4:32   ` Linus Torvalds
@ 2014-12-09  4:54     ` Guenter Roeck
  -1 siblings, 0 replies; 8+ messages in thread
From: Guenter Roeck @ 2014-12-09  4:54 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Linux Kernel Mailing List, lm-sensors@lm-sensors.org

On 12/08/2014 08:32 PM, Linus Torvalds wrote:
> On Mon, Dec 8, 2014 at 8:01 PM, Guenter Roeck <linux@roeck-us.net> wrote:
>>
>> Please pull hwmon updates for Linux 3.19 from signed tag:
>>
>>      git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git hwmon-for-linus-v3.19
>
> Yeah, no, that doesn't exist.
>
> But this does:
>
>>    git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git tags/hwmon-for-linus-3.19
>
> Notice the 'v' (or lack-there-of). It took me a while to notice that
> your two tag-names weren't actually the same.
>

Oh well. Sorry for that. The tag _was_ supposed to have a 'v' in it.
I see you pulled anyway - thanks.

And I owe you a beer or two next time I see you.

Guenter


_______________________________________________
lm-sensors mailing list
lm-sensors@lm-sensors.org
http://lists.lm-sensors.org/mailman/listinfo/lm-sensors

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

* Re: [GIT PULL] hwmon updates for 3.19
@ 2014-12-09  4:54     ` Guenter Roeck
  0 siblings, 0 replies; 8+ messages in thread
From: Guenter Roeck @ 2014-12-09  4:54 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Linux Kernel Mailing List, lm-sensors@lm-sensors.org

On 12/08/2014 08:32 PM, Linus Torvalds wrote:
> On Mon, Dec 8, 2014 at 8:01 PM, Guenter Roeck <linux@roeck-us.net> wrote:
>>
>> Please pull hwmon updates for Linux 3.19 from signed tag:
>>
>>      git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git hwmon-for-linus-v3.19
>
> Yeah, no, that doesn't exist.
>
> But this does:
>
>>    git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git tags/hwmon-for-linus-3.19
>
> Notice the 'v' (or lack-there-of). It took me a while to notice that
> your two tag-names weren't actually the same.
>

Oh well. Sorry for that. The tag _was_ supposed to have a 'v' in it.
I see you pulled anyway - thanks.

And I owe you a beer or two next time I see you.

Guenter


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

end of thread, other threads:[~2014-12-09  4:55 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-09  4:01 [lm-sensors] [GIT PULL] hwmon updates for 3.19 Guenter Roeck
2014-12-09  4:01 ` Guenter Roeck
2014-12-09  4:32 ` [lm-sensors] " Linus Torvalds
2014-12-09  4:32   ` Linus Torvalds
2014-12-09  4:54   ` [lm-sensors] " Guenter Roeck
2014-12-09  4:54     ` Guenter Roeck
2014-12-09  4:37 ` [lm-sensors] " Stephen Rothwell
2014-12-09  4:37   ` Stephen Rothwell

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.