2011-05-23 15:28:14

by Guenter Roeck

[permalink] [raw]
Subject: [GIT PULL] hwmon updates for 2.6.40

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


2011-05-23 18:06:51

by Guenter Roeck

[permalink] [raw]
Subject: Re: [lm-sensors] [GIT PULL] hwmon updates for 2.6.40

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
>

2011-05-23 18:10:51

by Linus Torvalds

[permalink] [raw]
Subject: Re: [lm-sensors] [GIT PULL] hwmon updates for 2.6.40

On Mon, May 23, 2011 at 11:05 AM, Guenter Roeck
<[email protected]> 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

2011-05-23 18:23:18

by Guenter Roeck

[permalink] [raw]
Subject: Re: [lm-sensors] [GIT PULL] hwmon updates for 2.6.40

On Mon, 2011-05-23 at 14:09 -0400, Linus Torvalds wrote:
> On Mon, May 23, 2011 at 11:05 AM, Guenter Roeck
> <[email protected]> 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

2011-05-23 20:09:30

by Jean Delvare

[permalink] [raw]
Subject: Re: [lm-sensors] [GIT PULL] hwmon updates for 2.6.40

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

2011-05-23 20:39:29

by Guenter Roeck

[permalink] [raw]
Subject: Re: [lm-sensors] [GIT PULL] hwmon updates for 2.6.40

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