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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 3354 bytes --]

Hi Linus,

Please pull hwmon subsystem updates for Linux 2.6.40 from:

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

Couple of new drivers (ADM1275, MAX16065, MAX6642, UCD9200, UCD90xxx),
merged pkgtemp into coretemp, and added new functionality to the sht15 driver.

Thanks,
Guenter Roeck

------

The following changes since commit 61c4f2c81c61f73549928dfd9f3e8f26aa36a8cf:

  Linux 2.6.39 (2011-05-18 21:06:34 -0700)

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

Durgadoss R (1):
      hwmon: (coretemp) Merge pkgtemp with coretemp

Guenter Roeck (9):
      hwmon: Driver for MAX16065 System Manager and compatibles
      hwmon: (pmbus) Introduce infrastructure to detect sensors and limit registers
      hwmon: (pmbus) Expand scope of device specific get_status function
      hwmon: (pmbus) Use device specific function to read fan configuration
      hwmon: (pmbus) Add support for TI UCD9200 series of PWM System Controllers
      hwmon: (pmbus) Support for TI UCD90xxx series Sequencer and System Health Controllers
      hwmon: (pmbus) Add support for Analog Devices ADM1275
      hwmon: Remove pkgtemp driver
      hwmon: (coretemp) Fix checkpatch errors

Jerome Oufella (1):
      hwmon: (sht15) add support for CRC validation

Per Dalén (1):
      hwmon: Add support for MAX6642

Vivien Didelot (3):
      hwmon: (sht15) general code clean-up
      hwmon: (sht15) clean-up the probe function
      hwmon: (sht15) add support for the status register

 Documentation/hwmon/adm1275  |   60 +++
 Documentation/hwmon/coretemp |   21 +-
 Documentation/hwmon/max16065 |   98 +++++
 Documentation/hwmon/max6642  |   21 +
 Documentation/hwmon/pkgtemp  |   36 --
 Documentation/hwmon/sht15    |   74 ++++
 Documentation/hwmon/ucd9000  |  110 +++++
 Documentation/hwmon/ucd9200  |  112 +++++
 drivers/hwmon/Kconfig        |   66 +++-
 drivers/hwmon/Makefile       |    6 +-
 drivers/hwmon/adm1275.c      |  121 ++++++
 drivers/hwmon/coretemp.c     |  722 +++++++++++++++++++++----------
 drivers/hwmon/max16065.c     |  717 +++++++++++++++++++++++++++++++
 drivers/hwmon/max34440.c     |    6 +-
 drivers/hwmon/max6642.c      |  356 ++++++++++++++++
 drivers/hwmon/max8688.c      |    4 +-
 drivers/hwmon/pkgtemp.c      |  444 -------------------
 drivers/hwmon/pmbus.h        |   10 +-
 drivers/hwmon/pmbus_core.c   |  970 +++++++++++++++++++-----------------------
 drivers/hwmon/sht15.c        |  747 +++++++++++++++++++++++++--------
 drivers/hwmon/ucd9000.c      |  278 ++++++++++++
 drivers/hwmon/ucd9200.c      |  210 +++++++++
 include/linux/sht15.h        |   18 +-
 23 files changed, 3765 insertions(+), 1442 deletions(-)
 create mode 100644 Documentation/hwmon/adm1275
 create mode 100644 Documentation/hwmon/max16065
 create mode 100644 Documentation/hwmon/max6642
 delete mode 100644 Documentation/hwmon/pkgtemp
 create mode 100644 Documentation/hwmon/sht15
 create mode 100644 Documentation/hwmon/ucd9000
 create mode 100644 Documentation/hwmon/ucd9200
 create mode 100644 drivers/hwmon/adm1275.c
 create mode 100644 drivers/hwmon/max16065.c
 create mode 100644 drivers/hwmon/max6642.c
 delete mode 100644 drivers/hwmon/pkgtemp.c
 create mode 100644 drivers/hwmon/ucd9000.c
 create mode 100644 drivers/hwmon/ucd9200.c

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

* [lm-sensors] [GIT PULL] hwmon updates for 2.6.40
@ 2011-05-23 15:21 ` Guenter Roeck
  0 siblings, 0 replies; 16+ messages in thread
From: Guenter Roeck @ 2011-05-23 15:21 UTC (permalink / raw)
  To: torvalds; +Cc: linux-kernel, lm-sensors

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

Hi Linus,

Please pull hwmon subsystem updates for Linux 2.6.40 from:

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

Couple of new drivers (ADM1275, MAX16065, MAX6642, UCD9200, UCD90xxx),
merged pkgtemp into coretemp, and added new functionality to the sht15 driver.

Thanks,
Guenter Roeck

------

The following changes since commit 61c4f2c81c61f73549928dfd9f3e8f26aa36a8cf:

  Linux 2.6.39 (2011-05-18 21:06:34 -0700)

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

Durgadoss R (1):
      hwmon: (coretemp) Merge pkgtemp with coretemp

Guenter Roeck (9):
      hwmon: Driver for MAX16065 System Manager and compatibles
      hwmon: (pmbus) Introduce infrastructure to detect sensors and limit registers
      hwmon: (pmbus) Expand scope of device specific get_status function
      hwmon: (pmbus) Use device specific function to read fan configuration
      hwmon: (pmbus) Add support for TI UCD9200 series of PWM System Controllers
      hwmon: (pmbus) Support for TI UCD90xxx series Sequencer and System Health Controllers
      hwmon: (pmbus) Add support for Analog Devices ADM1275
      hwmon: Remove pkgtemp driver
      hwmon: (coretemp) Fix checkpatch errors

Jerome Oufella (1):
      hwmon: (sht15) add support for CRC validation

Per Dal������n (1):
      hwmon: Add support for MAX6642

Vivien Didelot (3):
      hwmon: (sht15) general code clean-up
      hwmon: (sht15) clean-up the probe function
      hwmon: (sht15) add support for the status register

 Documentation/hwmon/adm1275  |   60 +++
 Documentation/hwmon/coretemp |   21 +-
 Documentation/hwmon/max16065 |   98 +++++
 Documentation/hwmon/max6642  |   21 +
 Documentation/hwmon/pkgtemp  |   36 --
 Documentation/hwmon/sht15    |   74 ++++
 Documentation/hwmon/ucd9000  |  110 +++++
 Documentation/hwmon/ucd9200  |  112 +++++
 drivers/hwmon/Kconfig        |   66 +++-
 drivers/hwmon/Makefile       |    6 +-
 drivers/hwmon/adm1275.c      |  121 ++++++
 drivers/hwmon/coretemp.c     |  722 +++++++++++++++++++++----------
 drivers/hwmon/max16065.c     |  717 +++++++++++++++++++++++++++++++
 drivers/hwmon/max34440.c     |    6 +-
 drivers/hwmon/max6642.c      |  356 ++++++++++++++++
 drivers/hwmon/max8688.c      |    4 +-
 drivers/hwmon/pkgtemp.c      |  444 -------------------
 drivers/hwmon/pmbus.h        |   10 +-
 drivers/hwmon/pmbus_core.c   |  970 +++++++++++++++++++-----------------------
 drivers/hwmon/sht15.c        |  747 +++++++++++++++++++++++++--------
 drivers/hwmon/ucd9000.c      |  278 ++++++++++++
 drivers/hwmon/ucd9200.c      |  210 +++++++++
 include/linux/sht15.h        |   18 +-
 23 files changed, 3765 insertions(+), 1442 deletions(-)
 create mode 100644 Documentation/hwmon/adm1275
 create mode 100644 Documentation/hwmon/max16065
 create mode 100644 Documentation/hwmon/max6642
 delete mode 100644 Documentation/hwmon/pkgtemp
 create mode 100644 Documentation/hwmon/sht15
 create mode 100644 Documentation/hwmon/ucd9000
 create mode 100644 Documentation/hwmon/ucd9200
 create mode 100644 drivers/hwmon/adm1275.c
 create mode 100644 drivers/hwmon/max16065.c
 create mode 100644 drivers/hwmon/max6642.c
 delete mode 100644 drivers/hwmon/pkgtemp.c
 create mode 100644 drivers/hwmon/ucd9000.c
 create mode 100644 drivers/hwmon/ucd9200.c


[-- 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] 16+ messages in thread

* Re: [lm-sensors] [GIT PULL] hwmon updates for 2.6.40
  2011-05-23 15:21 ` [lm-sensors] " Guenter Roeck
@ 2011-05-23 18:05   ` Guenter Roeck
  -1 siblings, 0 replies; 16+ messages in thread
From: Guenter Roeck @ 2011-05-23 18:05 UTC (permalink / raw)
  To: torvalds; +Cc: linux-kernel, lm-sensors

Linus,

Please don't merge yet. It fails to compile if CONFIG_SMP is undefined.
I'll send another merge request after it is fixed.

Thanks,
Guenter

On Mon, 2011-05-23 at 11:21 -0400, Guenter Roeck wrote:
> Hi Linus,
> 
> Please pull hwmon subsystem updates for Linux 2.6.40 from:
> 
>     git://git.kernel.org/pub/scm/linux/kernel/git/groeck/staging.git hwmon-for-linus
> 
> Couple of new drivers (ADM1275, MAX16065, MAX6642, UCD9200, UCD90xxx),
> merged pkgtemp into coretemp, and added new functionality to the sht15 driver.
> 
> Thanks,
> Guenter Roeck
> 
> ------
> 
> The following changes since commit 61c4f2c81c61f73549928dfd9f3e8f26aa36a8cf:
> 
>   Linux 2.6.39 (2011-05-18 21:06:34 -0700)
> 
> are available in the git repository at:
>   git://git.kernel.org/pub/scm/linux/kernel/git/groeck/staging.git hwmon-for-linus
> 
> Durgadoss R (1):
>       hwmon: (coretemp) Merge pkgtemp with coretemp
> 
> Guenter Roeck (9):
>       hwmon: Driver for MAX16065 System Manager and compatibles
>       hwmon: (pmbus) Introduce infrastructure to detect sensors and limit registers
>       hwmon: (pmbus) Expand scope of device specific get_status function
>       hwmon: (pmbus) Use device specific function to read fan configuration
>       hwmon: (pmbus) Add support for TI UCD9200 series of PWM System Controllers
>       hwmon: (pmbus) Support for TI UCD90xxx series Sequencer and System Health Controllers
>       hwmon: (pmbus) Add support for Analog Devices ADM1275
>       hwmon: Remove pkgtemp driver
>       hwmon: (coretemp) Fix checkpatch errors
> 
> Jerome Oufella (1):
>       hwmon: (sht15) add support for CRC validation
> 
> Per Dalén (1):
>       hwmon: Add support for MAX6642
> 
> Vivien Didelot (3):
>       hwmon: (sht15) general code clean-up
>       hwmon: (sht15) clean-up the probe function
>       hwmon: (sht15) add support for the status register
> 
>  Documentation/hwmon/adm1275  |   60 +++
>  Documentation/hwmon/coretemp |   21 +-
>  Documentation/hwmon/max16065 |   98 +++++
>  Documentation/hwmon/max6642  |   21 +
>  Documentation/hwmon/pkgtemp  |   36 --
>  Documentation/hwmon/sht15    |   74 ++++
>  Documentation/hwmon/ucd9000  |  110 +++++
>  Documentation/hwmon/ucd9200  |  112 +++++
>  drivers/hwmon/Kconfig        |   66 +++-
>  drivers/hwmon/Makefile       |    6 +-
>  drivers/hwmon/adm1275.c      |  121 ++++++
>  drivers/hwmon/coretemp.c     |  722 +++++++++++++++++++++----------
>  drivers/hwmon/max16065.c     |  717 +++++++++++++++++++++++++++++++
>  drivers/hwmon/max34440.c     |    6 +-
>  drivers/hwmon/max6642.c      |  356 ++++++++++++++++
>  drivers/hwmon/max8688.c      |    4 +-
>  drivers/hwmon/pkgtemp.c      |  444 -------------------
>  drivers/hwmon/pmbus.h        |   10 +-
>  drivers/hwmon/pmbus_core.c   |  970 +++++++++++++++++++-----------------------
>  drivers/hwmon/sht15.c        |  747 +++++++++++++++++++++++++--------
>  drivers/hwmon/ucd9000.c      |  278 ++++++++++++
>  drivers/hwmon/ucd9200.c      |  210 +++++++++
>  include/linux/sht15.h        |   18 +-
>  23 files changed, 3765 insertions(+), 1442 deletions(-)
>  create mode 100644 Documentation/hwmon/adm1275
>  create mode 100644 Documentation/hwmon/max16065
>  create mode 100644 Documentation/hwmon/max6642
>  delete mode 100644 Documentation/hwmon/pkgtemp
>  create mode 100644 Documentation/hwmon/sht15
>  create mode 100644 Documentation/hwmon/ucd9000
>  create mode 100644 Documentation/hwmon/ucd9200
>  create mode 100644 drivers/hwmon/adm1275.c
>  create mode 100644 drivers/hwmon/max16065.c
>  create mode 100644 drivers/hwmon/max6642.c
>  delete mode 100644 drivers/hwmon/pkgtemp.c
>  create mode 100644 drivers/hwmon/ucd9000.c
>  create mode 100644 drivers/hwmon/ucd9200.c
> 



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

* Re: [lm-sensors] [GIT PULL] hwmon updates for 2.6.40
@ 2011-05-23 18:05   ` Guenter Roeck
  0 siblings, 0 replies; 16+ messages in thread
From: Guenter Roeck @ 2011-05-23 18:05 UTC (permalink / raw)
  To: torvalds; +Cc: linux-kernel, lm-sensors

Linus,

Please don't merge yet. It fails to compile if CONFIG_SMP is undefined.
I'll send another merge request after it is fixed.

Thanks,
Guenter

On Mon, 2011-05-23 at 11:21 -0400, Guenter Roeck wrote:
> Hi Linus,
> 
> Please pull hwmon subsystem updates for Linux 2.6.40 from:
> 
>     git://git.kernel.org/pub/scm/linux/kernel/git/groeck/staging.git hwmon-for-linus
> 
> Couple of new drivers (ADM1275, MAX16065, MAX6642, UCD9200, UCD90xxx),
> merged pkgtemp into coretemp, and added new functionality to the sht15 driver.
> 
> Thanks,
> Guenter Roeck
> 
> ------
> 
> The following changes since commit 61c4f2c81c61f73549928dfd9f3e8f26aa36a8cf:
> 
>   Linux 2.6.39 (2011-05-18 21:06:34 -0700)
> 
> are available in the git repository at:
>   git://git.kernel.org/pub/scm/linux/kernel/git/groeck/staging.git hwmon-for-linus
> 
> Durgadoss R (1):
>       hwmon: (coretemp) Merge pkgtemp with coretemp
> 
> Guenter Roeck (9):
>       hwmon: Driver for MAX16065 System Manager and compatibles
>       hwmon: (pmbus) Introduce infrastructure to detect sensors and limit registers
>       hwmon: (pmbus) Expand scope of device specific get_status function
>       hwmon: (pmbus) Use device specific function to read fan configuration
>       hwmon: (pmbus) Add support for TI UCD9200 series of PWM System Controllers
>       hwmon: (pmbus) Support for TI UCD90xxx series Sequencer and System Health Controllers
>       hwmon: (pmbus) Add support for Analog Devices ADM1275
>       hwmon: Remove pkgtemp driver
>       hwmon: (coretemp) Fix checkpatch errors
> 
> Jerome Oufella (1):
>       hwmon: (sht15) add support for CRC validation
> 
> Per Dalén (1):
>       hwmon: Add support for MAX6642
> 
> Vivien Didelot (3):
>       hwmon: (sht15) general code clean-up
>       hwmon: (sht15) clean-up the probe function
>       hwmon: (sht15) add support for the status register
> 
>  Documentation/hwmon/adm1275  |   60 +++
>  Documentation/hwmon/coretemp |   21 +-
>  Documentation/hwmon/max16065 |   98 +++++
>  Documentation/hwmon/max6642  |   21 +
>  Documentation/hwmon/pkgtemp  |   36 --
>  Documentation/hwmon/sht15    |   74 ++++
>  Documentation/hwmon/ucd9000  |  110 +++++
>  Documentation/hwmon/ucd9200  |  112 +++++
>  drivers/hwmon/Kconfig        |   66 +++-
>  drivers/hwmon/Makefile       |    6 +-
>  drivers/hwmon/adm1275.c      |  121 ++++++
>  drivers/hwmon/coretemp.c     |  722 +++++++++++++++++++++----------
>  drivers/hwmon/max16065.c     |  717 +++++++++++++++++++++++++++++++
>  drivers/hwmon/max34440.c     |    6 +-
>  drivers/hwmon/max6642.c      |  356 ++++++++++++++++
>  drivers/hwmon/max8688.c      |    4 +-
>  drivers/hwmon/pkgtemp.c      |  444 -------------------
>  drivers/hwmon/pmbus.h        |   10 +-
>  drivers/hwmon/pmbus_core.c   |  970 +++++++++++++++++++-----------------------
>  drivers/hwmon/sht15.c        |  747 +++++++++++++++++++++++++--------
>  drivers/hwmon/ucd9000.c      |  278 ++++++++++++
>  drivers/hwmon/ucd9200.c      |  210 +++++++++
>  include/linux/sht15.h        |   18 +-
>  23 files changed, 3765 insertions(+), 1442 deletions(-)
>  create mode 100644 Documentation/hwmon/adm1275
>  create mode 100644 Documentation/hwmon/max16065
>  create mode 100644 Documentation/hwmon/max6642
>  delete mode 100644 Documentation/hwmon/pkgtemp
>  create mode 100644 Documentation/hwmon/sht15
>  create mode 100644 Documentation/hwmon/ucd9000
>  create mode 100644 Documentation/hwmon/ucd9200
>  create mode 100644 drivers/hwmon/adm1275.c
>  create mode 100644 drivers/hwmon/max16065.c
>  create mode 100644 drivers/hwmon/max6642.c
>  delete mode 100644 drivers/hwmon/pkgtemp.c
>  create mode 100644 drivers/hwmon/ucd9000.c
>  create mode 100644 drivers/hwmon/ucd9200.c
> 



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

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

* Re: [lm-sensors] [GIT PULL] hwmon updates for 2.6.40
  2011-05-23 18:05   ` Guenter Roeck
@ 2011-05-23 18:09     ` Linus Torvalds
  -1 siblings, 0 replies; 16+ messages in thread
From: Linus Torvalds @ 2011-05-23 18:09 UTC (permalink / raw)
  To: guenter.roeck; +Cc: linux-kernel, lm-sensors

On Mon, May 23, 2011 at 11:05 AM, Guenter Roeck
<guenter.roeck@ericsson.com> wrote:
>
> Please don't merge yet. It fails to compile if CONFIG_SMP is undefined.
> I'll send another merge request after it is fixed.

It is faster than a speeding bullet, more powerful than a freight
train. It is KERNEL MAN!

I already pulled.

                   Linus

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

* Re: [lm-sensors] [GIT PULL] hwmon updates for 2.6.40
@ 2011-05-23 18:09     ` Linus Torvalds
  0 siblings, 0 replies; 16+ messages in thread
From: Linus Torvalds @ 2011-05-23 18:09 UTC (permalink / raw)
  To: guenter.roeck; +Cc: linux-kernel, lm-sensors

On Mon, May 23, 2011 at 11:05 AM, Guenter Roeck
<guenter.roeck@ericsson.com> wrote:
>
> Please don't merge yet. It fails to compile if CONFIG_SMP is undefined.
> I'll send another merge request after it is fixed.

It is faster than a speeding bullet, more powerful than a freight
train. It is KERNEL MAN!

I already pulled.

                   Linus

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

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

* Re: [lm-sensors] [GIT PULL] hwmon updates for 2.6.40
  2011-05-23 18:09     ` Linus Torvalds
@ 2011-05-23 18:22       ` Guenter Roeck
  -1 siblings, 0 replies; 16+ messages in thread
From: Guenter Roeck @ 2011-05-23 18:22 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-kernel, lm-sensors

On Mon, 2011-05-23 at 14:09 -0400, Linus Torvalds wrote:
> On Mon, May 23, 2011 at 11:05 AM, Guenter Roeck
> <guenter.roeck@ericsson.com> wrote:
> >
> > Please don't merge yet. It fails to compile if CONFIG_SMP is undefined.
> > I'll send another merge request after it is fixed.
> 
> It is faster than a speeding bullet, more powerful than a freight
> train. It is KERNEL MAN!
> 
> I already pulled.
> 
Ok, I'll send a patch in a minute. My apologies for the trouble.

Guenter



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

* Re: [lm-sensors] [GIT PULL] hwmon updates for 2.6.40
@ 2011-05-23 18:22       ` Guenter Roeck
  0 siblings, 0 replies; 16+ messages in thread
From: Guenter Roeck @ 2011-05-23 18:22 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-kernel, lm-sensors

On Mon, 2011-05-23 at 14:09 -0400, Linus Torvalds wrote:
> On Mon, May 23, 2011 at 11:05 AM, Guenter Roeck
> <guenter.roeck@ericsson.com> wrote:
> >
> > Please don't merge yet. It fails to compile if CONFIG_SMP is undefined.
> > I'll send another merge request after it is fixed.
> 
> It is faster than a speeding bullet, more powerful than a freight
> train. It is KERNEL MAN!
> 
> I already pulled.
> 
Ok, I'll send a patch in a minute. My apologies for the trouble.

Guenter



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

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

* Re: [lm-sensors] [GIT PULL] hwmon updates for 2.6.40
  2011-05-23 15:21 ` [lm-sensors] " Guenter Roeck
@ 2011-05-23 20:07   ` Jean Delvare
  -1 siblings, 0 replies; 16+ messages in thread
From: Jean Delvare @ 2011-05-23 20:07 UTC (permalink / raw)
  To: Guenter Roeck; +Cc: torvalds, linux-kernel, lm-sensors

Hi Guenter,

On Mon, 23 May 2011 08:21:32 -0700, Guenter Roeck wrote:
> Per Dalén (1):
>       hwmon: Add support for MAX6642

I see no trace of this device on wiki/Devices nor in sensors-detect.
Can it be added please?

-- 
Jean Delvare

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

* Re: [lm-sensors] [GIT PULL] hwmon updates for 2.6.40
@ 2011-05-23 20:07   ` Jean Delvare
  0 siblings, 0 replies; 16+ messages in thread
From: Jean Delvare @ 2011-05-23 20:07 UTC (permalink / raw)
  To: Guenter Roeck; +Cc: torvalds, linux-kernel, lm-sensors

Hi Guenter,

On Mon, 23 May 2011 08:21:32 -0700, Guenter Roeck wrote:
> Per Dalén (1):
>       hwmon: Add support for MAX6642

I see no trace of this device on wiki/Devices nor in sensors-detect.
Can it be added please?

-- 
Jean Delvare

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

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

* Re: [lm-sensors] [GIT PULL] hwmon updates for 2.6.40
  2011-05-23 20:07   ` Jean Delvare
@ 2011-05-23 20:36     ` Guenter Roeck
  -1 siblings, 0 replies; 16+ messages in thread
From: Guenter Roeck @ 2011-05-23 20:36 UTC (permalink / raw)
  To: Jean Delvare; +Cc: Guenter Roeck, torvalds, linux-kernel, lm-sensors

On Mon, 2011-05-23 at 16:07 -0400, Jean Delvare wrote:
> Hi Guenter,
> 
> On Mon, 23 May 2011 08:21:32 -0700, Guenter Roeck wrote:
> > Per Dalén (1):
> >       hwmon: Add support for MAX6642
> 
> I see no trace of this device on wiki/Devices nor in sensors-detect.
> Can it be added please?
> 
Sure, will do.

Guenter



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

* Re: [lm-sensors] [GIT PULL] hwmon updates for 2.6.40
@ 2011-05-23 20:36     ` Guenter Roeck
  0 siblings, 0 replies; 16+ messages in thread
From: Guenter Roeck @ 2011-05-23 20:36 UTC (permalink / raw)
  To: Jean Delvare; +Cc: Guenter Roeck, torvalds, linux-kernel, lm-sensors

On Mon, 2011-05-23 at 16:07 -0400, Jean Delvare wrote:
> Hi Guenter,
> 
> On Mon, 23 May 2011 08:21:32 -0700, Guenter Roeck wrote:
> > Per Dalén (1):
> >       hwmon: Add support for MAX6642
> 
> I see no trace of this device on wiki/Devices nor in sensors-detect.
> Can it be added please?
> 
Sure, will do.

Guenter



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

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

* Re: [lm-sensors] [GIT PULL] hwmon updates for 2.6.40
  2011-05-23 15:21 ` [lm-sensors] " Guenter Roeck
                   ` (2 preceding siblings ...)
  (?)
@ 2011-05-24 18:09 ` Guenter Roeck
  -1 siblings, 0 replies; 16+ messages in thread
From: Guenter Roeck @ 2011-05-24 18:09 UTC (permalink / raw)
  To: lm-sensors

Hi Jean,

On Mon, 2011-05-23 at 16:07 -0400, Jean Delvare wrote:
> Hi Guenter,
> 
> On Mon, 23 May 2011 08:21:32 -0700, Guenter Roeck wrote:
> > Per Dalén (1):
> >       hwmon: Add support for MAX6642
> 
> I see no trace of this device on wiki/Devices nor in sensors-detect.
> Can it be added please?

While writing the sensors-detect code, I concluded that device detection
is too weak. I requested samples; once I get those I'll either improve
the detection code or drop it from the driver.

Guenter



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

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

* Re: [lm-sensors] [GIT PULL] hwmon updates for 2.6.40
  2011-05-23 15:21 ` [lm-sensors] " Guenter Roeck
                   ` (3 preceding siblings ...)
  (?)
@ 2011-05-24 19:24 ` Guenter Roeck
  -1 siblings, 0 replies; 16+ messages in thread
From: Guenter Roeck @ 2011-05-24 19:24 UTC (permalink / raw)
  To: lm-sensors

Hi Per,

On Tue, 2011-05-24 at 15:15 -0400, Per Dalén wrote:
> > Hi Jean,
> >
> > On Mon, 2011-05-23 at 16:07 -0400, Jean Delvare wrote:
> >> Hi Guenter,
> >>
> >> On Mon, 23 May 2011 08:21:32 -0700, Guenter Roeck wrote:
> >> > Per Dalén (1):
> >> >       hwmon: Add support for MAX6642
> >>
> >> I see no trace of this device on wiki/Devices nor in sensors-detect.
> >> Can it be added please?
> >
> > While writing the sensors-detect code, I concluded that device detection
> > is too weak. I requested samples; once I get those I'll either improve
> > the detection code or drop it from the driver.
> >
> 
> I'll try to do it tomorrow when I access to the card.
> 
That would be great. One possibility would be to check for non-existing
registers, eg registers 0x04, 0x06, 0xff, which are supported by other
Maxim chips. Reading such registers will likely return the previously
read value.

Thanks,
Guenter



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

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

* [GIT PULL] hwmon updates for 2.6.40
  2011-05-23 15:21 ` [lm-sensors] " Guenter Roeck
@ 2011-05-25 19:35 ` Jean Delvare
  -1 siblings, 0 replies; 16+ messages in thread
From: Jean Delvare @ 2011-05-25 19:35 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: LKML, LM Sensors, Guenter Roeck

Hi Linus,

Please pull hwmon subsystem updates for Linux 2.6.40 from:

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

We have support for new devices (SMSC EMC6W201, AMD Family 15h CPU,
Fintek F71808A) and various driver cleanups.

 Documentation/hwmon/emc6w201                       |   42 ++
 Documentation/hwmon/f71882fg                       |    4 +
 Documentation/hwmon/fam15h_power                   |   37 ++
 Documentation/hwmon/k10temp                        |    3 +-
 Documentation/hwmon/max6650                        |   21 +-
 MAINTAINERS                                        |    7 +
 arch/x86/Kconfig                                   |    1 +
 drivers/acpi/Kconfig                               |   11 -
 drivers/acpi/Makefile                              |    1 -
 drivers/char/i8k.c                                 |  166 ++++++-
 drivers/hwmon/Kconfig                              |   42 ++-
 drivers/hwmon/Makefile                             |    3 +
 drivers/hwmon/abituguru.c                          |    3 -
 drivers/hwmon/abituguru3.c                         |   13 -
 .../power_meter.c => hwmon/acpi_power_meter.c}     |    0
 drivers/hwmon/adcxx.c                              |   16 +-
 drivers/hwmon/emc6w201.c                           |  539 ++++++++++++++++++++
 drivers/hwmon/f71882fg.c                           |  115 ++++-
 drivers/hwmon/fam15h_power.c                       |  229 +++++++++
 drivers/hwmon/ibmaem.c                             |   10 +-
 drivers/hwmon/it87.c                               |   31 +-
 drivers/hwmon/jc42.c                               |    2 +-
 drivers/hwmon/k10temp.c                            |   11 +-
 drivers/hwmon/k8temp.c                             |    8 +-
 drivers/hwmon/lm70.c                               |   10 +-
 drivers/hwmon/max6650.c                            |   78 +--
 drivers/hwmon/sch5627.c                            |   46 ++-
 drivers/hwmon/ultra45_env.c                        |    4 +-
 include/linux/i2c.h                                |    2 +-
 29 files changed, 1305 insertions(+), 150 deletions(-)
 create mode 100644 Documentation/hwmon/emc6w201
 create mode 100644 Documentation/hwmon/fam15h_power
 rename drivers/{acpi/power_meter.c => hwmon/acpi_power_meter.c} (100%)
 create mode 100644 drivers/hwmon/emc6w201.c
 create mode 100644 drivers/hwmon/fam15h_power.c

---------------

Andre Przywara (1):
      hwmon: (k10temp) Add support for Fam15h (Bulldozer)

Andreas Herrmann (1):
      hwmon: Add driver for AMD family 15h processor power information

Hans de Goede (4):
      hwmon: (f71882fg) Split has_beep in fan_has_beep and temp_has_beep
      hwmon: (f71882fg) Add support for F71808A
      hwmon: (sch5627) Add sch5627_send_cmd function
      hwmon: (sch5627) Trigger Vbat measurements

Jean Delvare (9):
      hwmon: Use helper functions to set and get driver data
      hwmon: (jc42) Change detection class
      hwmon: (asc7621) Drop duplicate dependency
      Move ACPI power meter driver to hwmon
      hwmon: (max6650) Drop device detection
      hwmon: (max6650) Properly support the MAX6650
      i8k: Integrate with the hwmon subsystem
      hwmon: (abituguru) Depend on DMI
      hwmon: New driver for the SMSC EMC6W201

Luca Tettamanti (1):
      i8k: Avoid lahf in 64-bit code

Nat Gurumoorthy (1):
      hwmon: (it87) Use request_muxed_region

Thanks,
-- 
Jean Delvare

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

* [lm-sensors] [GIT PULL] hwmon updates for 2.6.40
@ 2011-05-25 19:35 ` Jean Delvare
  0 siblings, 0 replies; 16+ messages in thread
From: Jean Delvare @ 2011-05-25 19:35 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: LKML, LM Sensors, Guenter Roeck

Hi Linus,

Please pull hwmon subsystem updates for Linux 2.6.40 from:

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

We have support for new devices (SMSC EMC6W201, AMD Family 15h CPU,
Fintek F71808A) and various driver cleanups.

 Documentation/hwmon/emc6w201                       |   42 ++
 Documentation/hwmon/f71882fg                       |    4 +
 Documentation/hwmon/fam15h_power                   |   37 ++
 Documentation/hwmon/k10temp                        |    3 +-
 Documentation/hwmon/max6650                        |   21 +-
 MAINTAINERS                                        |    7 +
 arch/x86/Kconfig                                   |    1 +
 drivers/acpi/Kconfig                               |   11 -
 drivers/acpi/Makefile                              |    1 -
 drivers/char/i8k.c                                 |  166 ++++++-
 drivers/hwmon/Kconfig                              |   42 ++-
 drivers/hwmon/Makefile                             |    3 +
 drivers/hwmon/abituguru.c                          |    3 -
 drivers/hwmon/abituguru3.c                         |   13 -
 .../power_meter.c => hwmon/acpi_power_meter.c}     |    0
 drivers/hwmon/adcxx.c                              |   16 +-
 drivers/hwmon/emc6w201.c                           |  539 ++++++++++++++++++++
 drivers/hwmon/f71882fg.c                           |  115 ++++-
 drivers/hwmon/fam15h_power.c                       |  229 +++++++++
 drivers/hwmon/ibmaem.c                             |   10 +-
 drivers/hwmon/it87.c                               |   31 +-
 drivers/hwmon/jc42.c                               |    2 +-
 drivers/hwmon/k10temp.c                            |   11 +-
 drivers/hwmon/k8temp.c                             |    8 +-
 drivers/hwmon/lm70.c                               |   10 +-
 drivers/hwmon/max6650.c                            |   78 +--
 drivers/hwmon/sch5627.c                            |   46 ++-
 drivers/hwmon/ultra45_env.c                        |    4 +-
 include/linux/i2c.h                                |    2 +-
 29 files changed, 1305 insertions(+), 150 deletions(-)
 create mode 100644 Documentation/hwmon/emc6w201
 create mode 100644 Documentation/hwmon/fam15h_power
 rename drivers/{acpi/power_meter.c => hwmon/acpi_power_meter.c} (100%)
 create mode 100644 drivers/hwmon/emc6w201.c
 create mode 100644 drivers/hwmon/fam15h_power.c

---------------

Andre Przywara (1):
      hwmon: (k10temp) Add support for Fam15h (Bulldozer)

Andreas Herrmann (1):
      hwmon: Add driver for AMD family 15h processor power information

Hans de Goede (4):
      hwmon: (f71882fg) Split has_beep in fan_has_beep and temp_has_beep
      hwmon: (f71882fg) Add support for F71808A
      hwmon: (sch5627) Add sch5627_send_cmd function
      hwmon: (sch5627) Trigger Vbat measurements

Jean Delvare (9):
      hwmon: Use helper functions to set and get driver data
      hwmon: (jc42) Change detection class
      hwmon: (asc7621) Drop duplicate dependency
      Move ACPI power meter driver to hwmon
      hwmon: (max6650) Drop device detection
      hwmon: (max6650) Properly support the MAX6650
      i8k: Integrate with the hwmon subsystem
      hwmon: (abituguru) Depend on DMI
      hwmon: New driver for the SMSC EMC6W201

Luca Tettamanti (1):
      i8k: Avoid lahf in 64-bit code

Nat Gurumoorthy (1):
      hwmon: (it87) Use request_muxed_region

Thanks,
-- 
Jean Delvare

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

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

end of thread, other threads:[~2011-05-25 19:37 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-05-23 15:21 [GIT PULL] hwmon updates for 2.6.40 Guenter Roeck
2011-05-23 15:21 ` [lm-sensors] " Guenter Roeck
2011-05-23 18:05 ` Guenter Roeck
2011-05-23 18:05   ` Guenter Roeck
2011-05-23 18:09   ` Linus Torvalds
2011-05-23 18:09     ` Linus Torvalds
2011-05-23 18:22     ` Guenter Roeck
2011-05-23 18:22       ` Guenter Roeck
2011-05-23 20:07 ` Jean Delvare
2011-05-23 20:07   ` Jean Delvare
2011-05-23 20:36   ` Guenter Roeck
2011-05-23 20:36     ` Guenter Roeck
2011-05-24 18:09 ` Guenter Roeck
2011-05-24 19:24 ` Guenter Roeck
2011-05-25 19:35 Jean Delvare
2011-05-25 19:35 ` [lm-sensors] " Jean Delvare

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.