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

Hi Linus,

Please pull hwmon subsystem updates for Linux 3.1 from:

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

Significant changes:
Moved PMBus drivers into their own subdirectory.
Added support for MAX1668, NTC thermistors, SA56004, LM95245,
LM95231, ADP4000, NCP4200, NCP4208, LM25066, LM5064, and LM5066.

Thanks,
Guenter Roeck

------

The following changes since commit 95b6886526bb510b8370b625a49bc0ab3b8ff10f:

  Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6 (2011-07-27 19:26:38 -0700)

are available in the git repository at:

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

Alexander Stein (1):
      hwmon: LM95245 driver

David George (1):
      hwmon: Driver for MAX1668

Donggeun Kim (1):
      hwmon: Driver for NTC Thermistors

Durgadoss R (1):
      hwmon: (coretemp) Add core/pkg threshold support to Coretemp

Guenter Roeck (16):
      hwmon: (max1668) Add support for tempX_fault attributes
      hwmon: (lm95241) Add support for LM95231
      hwmon: (pmbus) Move PMBus drivers to drivers/hwmon/pmbus
      hwmon: (pmbus) Add support for VID output voltage mode
      hwmon: (pmbus) Add ADP4000, NCP4200 and NCP4208 to list of supported devices
      hwmon: (pmbus) Increase attribute name size
      hwmon: (pmbus) Support reading and writing of word registers in device specific code
      hwmon: (pmbus) Add support for virtual pages
      hwmon: (pmbus) Strengthen check for status register existence
      hwmon: Add new attributes to sysfs ABI
      hwmon: (pmbus) Add support for peak attributes
      hwmon: (adm1275) Add support for peak attributes
      hwmon: (max16064) Add support for peak attributes
      hwmon: (max8688) Add support for peak attributes
      hwmon: (max34440) Add support for peak attributes
      hwmon: (pmbus) Add client driver for LM25066, LM5064, and LM5066

Jean Delvare (3):
      hwmon: (lm90) Simplify handling of extended local temp register
      hwmon: (lm90) Make SA56004 detection more robust
      hwmon: (lm90) Refactor reading of config2 register

Stijn Devriendt (1):
      hwmon: (lm90) Add support for Philips SA56004

 Documentation/hwmon/adm1275                  |    8 +-
 Documentation/hwmon/coretemp                 |    7 +
 Documentation/hwmon/lm25066                  |   90 +++++
 Documentation/hwmon/lm90                     |    9 +-
 Documentation/hwmon/lm95245                  |   33 ++
 Documentation/hwmon/max16064                 |    4 +
 Documentation/hwmon/max1668                  |   60 +++
 Documentation/hwmon/max34440                 |    6 +
 Documentation/hwmon/max8688                  |    6 +
 Documentation/hwmon/ntc_thermistor           |   93 +++++
 Documentation/hwmon/pmbus                    |    7 +
 Documentation/hwmon/sysfs-interface          |   46 +++
 MAINTAINERS                                  |   18 +
 drivers/hwmon/Kconfig                        |  127 ++-----
 drivers/hwmon/Makefile                       |   13 +-
 drivers/hwmon/coretemp.c                     |  177 +++++++---
 drivers/hwmon/lm90.c                         |   65 ++-
 drivers/hwmon/lm95241.c                      |   31 +-
 drivers/hwmon/lm95245.c                      |  543 ++++++++++++++++++++++++++
 drivers/hwmon/max1668.c                      |  502 ++++++++++++++++++++++++
 drivers/hwmon/ntc_thermistor.c               |  453 +++++++++++++++++++++
 drivers/hwmon/pmbus/Kconfig                  |  100 +++++
 drivers/hwmon/pmbus/Makefile                 |   13 +
 drivers/hwmon/{ => pmbus}/adm1275.c          |   66 +++-
 drivers/hwmon/pmbus/lm25066.c                |  340 ++++++++++++++++
 drivers/hwmon/{ => pmbus}/max16064.c         |   57 +++-
 drivers/hwmon/{ => pmbus}/max34440.c         |   81 ++++-
 drivers/hwmon/{ => pmbus}/max8688.c          |   69 +++-
 drivers/hwmon/{ => pmbus}/pmbus.c            |   37 ++-
 drivers/hwmon/{ => pmbus}/pmbus.h            |   48 +++-
 drivers/hwmon/{ => pmbus}/pmbus_core.c       |  351 +++++++++++++----
 drivers/hwmon/{ => pmbus}/ucd9000.c          |    0
 drivers/hwmon/{ => pmbus}/ucd9200.c          |    0
 include/linux/platform_data/ntc_thermistor.h |   53 +++
 34 files changed, 3229 insertions(+), 284 deletions(-)
 create mode 100644 Documentation/hwmon/lm25066
 create mode 100644 Documentation/hwmon/lm95245
 create mode 100644 Documentation/hwmon/max1668
 create mode 100644 Documentation/hwmon/ntc_thermistor
 create mode 100644 drivers/hwmon/lm95245.c
 create mode 100644 drivers/hwmon/max1668.c
 create mode 100644 drivers/hwmon/ntc_thermistor.c
 create mode 100644 drivers/hwmon/pmbus/Kconfig
 create mode 100644 drivers/hwmon/pmbus/Makefile
 rename drivers/hwmon/{ => pmbus}/adm1275.c (67%)
 create mode 100644 drivers/hwmon/pmbus/lm25066.c
 rename drivers/hwmon/{ => pmbus}/max16064.c (66%)
 rename drivers/hwmon/{ => pmbus}/max34440.c (76%)
 rename drivers/hwmon/{ => pmbus}/max8688.c (72%)
 rename drivers/hwmon/{ => pmbus}/pmbus.c (89%)
 rename drivers/hwmon/{ => pmbus}/pmbus.h (79%)
 rename drivers/hwmon/{ => pmbus}/pmbus_core.c (84%)
 rename drivers/hwmon/{ => pmbus}/ucd9000.c (100%)
 rename drivers/hwmon/{ => pmbus}/ucd9200.c (100%)
 create mode 100644 include/linux/platform_data/ntc_thermistor.h

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

* [lm-sensors] [GIT PULL] hwmon updates for 3.1
@ 2011-07-29  4:37 ` Guenter Roeck
  0 siblings, 0 replies; 2+ messages in thread
From: Guenter Roeck @ 2011-07-29  4:37 UTC (permalink / raw)
  To: torvalds; +Cc: linux-kernel, lm-sensors

Hi Linus,

Please pull hwmon subsystem updates for Linux 3.1 from:

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

Significant changes:
Moved PMBus drivers into their own subdirectory.
Added support for MAX1668, NTC thermistors, SA56004, LM95245,
LM95231, ADP4000, NCP4200, NCP4208, LM25066, LM5064, and LM5066.

Thanks,
Guenter Roeck

------

The following changes since commit 95b6886526bb510b8370b625a49bc0ab3b8ff10f:

  Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6 (2011-07-27 19:26:38 -0700)

are available in the git repository at:

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

Alexander Stein (1):
      hwmon: LM95245 driver

David George (1):
      hwmon: Driver for MAX1668

Donggeun Kim (1):
      hwmon: Driver for NTC Thermistors

Durgadoss R (1):
      hwmon: (coretemp) Add core/pkg threshold support to Coretemp

Guenter Roeck (16):
      hwmon: (max1668) Add support for tempX_fault attributes
      hwmon: (lm95241) Add support for LM95231
      hwmon: (pmbus) Move PMBus drivers to drivers/hwmon/pmbus
      hwmon: (pmbus) Add support for VID output voltage mode
      hwmon: (pmbus) Add ADP4000, NCP4200 and NCP4208 to list of supported devices
      hwmon: (pmbus) Increase attribute name size
      hwmon: (pmbus) Support reading and writing of word registers in device specific code
      hwmon: (pmbus) Add support for virtual pages
      hwmon: (pmbus) Strengthen check for status register existence
      hwmon: Add new attributes to sysfs ABI
      hwmon: (pmbus) Add support for peak attributes
      hwmon: (adm1275) Add support for peak attributes
      hwmon: (max16064) Add support for peak attributes
      hwmon: (max8688) Add support for peak attributes
      hwmon: (max34440) Add support for peak attributes
      hwmon: (pmbus) Add client driver for LM25066, LM5064, and LM5066

Jean Delvare (3):
      hwmon: (lm90) Simplify handling of extended local temp register
      hwmon: (lm90) Make SA56004 detection more robust
      hwmon: (lm90) Refactor reading of config2 register

Stijn Devriendt (1):
      hwmon: (lm90) Add support for Philips SA56004

 Documentation/hwmon/adm1275                  |    8 +-
 Documentation/hwmon/coretemp                 |    7 +
 Documentation/hwmon/lm25066                  |   90 +++++
 Documentation/hwmon/lm90                     |    9 +-
 Documentation/hwmon/lm95245                  |   33 ++
 Documentation/hwmon/max16064                 |    4 +
 Documentation/hwmon/max1668                  |   60 +++
 Documentation/hwmon/max34440                 |    6 +
 Documentation/hwmon/max8688                  |    6 +
 Documentation/hwmon/ntc_thermistor           |   93 +++++
 Documentation/hwmon/pmbus                    |    7 +
 Documentation/hwmon/sysfs-interface          |   46 +++
 MAINTAINERS                                  |   18 +
 drivers/hwmon/Kconfig                        |  127 ++-----
 drivers/hwmon/Makefile                       |   13 +-
 drivers/hwmon/coretemp.c                     |  177 +++++++---
 drivers/hwmon/lm90.c                         |   65 ++-
 drivers/hwmon/lm95241.c                      |   31 +-
 drivers/hwmon/lm95245.c                      |  543 ++++++++++++++++++++++++++
 drivers/hwmon/max1668.c                      |  502 ++++++++++++++++++++++++
 drivers/hwmon/ntc_thermistor.c               |  453 +++++++++++++++++++++
 drivers/hwmon/pmbus/Kconfig                  |  100 +++++
 drivers/hwmon/pmbus/Makefile                 |   13 +
 drivers/hwmon/{ => pmbus}/adm1275.c          |   66 +++-
 drivers/hwmon/pmbus/lm25066.c                |  340 ++++++++++++++++
 drivers/hwmon/{ => pmbus}/max16064.c         |   57 +++-
 drivers/hwmon/{ => pmbus}/max34440.c         |   81 ++++-
 drivers/hwmon/{ => pmbus}/max8688.c          |   69 +++-
 drivers/hwmon/{ => pmbus}/pmbus.c            |   37 ++-
 drivers/hwmon/{ => pmbus}/pmbus.h            |   48 +++-
 drivers/hwmon/{ => pmbus}/pmbus_core.c       |  351 +++++++++++++----
 drivers/hwmon/{ => pmbus}/ucd9000.c          |    0
 drivers/hwmon/{ => pmbus}/ucd9200.c          |    0
 include/linux/platform_data/ntc_thermistor.h |   53 +++
 34 files changed, 3229 insertions(+), 284 deletions(-)
 create mode 100644 Documentation/hwmon/lm25066
 create mode 100644 Documentation/hwmon/lm95245
 create mode 100644 Documentation/hwmon/max1668
 create mode 100644 Documentation/hwmon/ntc_thermistor
 create mode 100644 drivers/hwmon/lm95245.c
 create mode 100644 drivers/hwmon/max1668.c
 create mode 100644 drivers/hwmon/ntc_thermistor.c
 create mode 100644 drivers/hwmon/pmbus/Kconfig
 create mode 100644 drivers/hwmon/pmbus/Makefile
 rename drivers/hwmon/{ => pmbus}/adm1275.c (67%)
 create mode 100644 drivers/hwmon/pmbus/lm25066.c
 rename drivers/hwmon/{ => pmbus}/max16064.c (66%)
 rename drivers/hwmon/{ => pmbus}/max34440.c (76%)
 rename drivers/hwmon/{ => pmbus}/max8688.c (72%)
 rename drivers/hwmon/{ => pmbus}/pmbus.c (89%)
 rename drivers/hwmon/{ => pmbus}/pmbus.h (79%)
 rename drivers/hwmon/{ => pmbus}/pmbus_core.c (84%)
 rename drivers/hwmon/{ => pmbus}/ucd9000.c (100%)
 rename drivers/hwmon/{ => pmbus}/ucd9200.c (100%)
 create mode 100644 include/linux/platform_data/ntc_thermistor.h

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

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

end of thread, other threads:[~2011-07-29  4:38 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-07-29  4:37 [GIT PULL] hwmon updates for 3.1 Guenter Roeck
2011-07-29  4:37 ` [lm-sensors] " Guenter Roeck

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.