mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Jean Delvare <khali@linux-fr.org>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: LKML <linux-kernel@vger.kernel.org>,
	LM Sensors <lm-sensors@lm-sensors.org>
Subject: [GIT PULL] hwmon updates for 2.6.22
Date: Tue, 8 May 2007 17:45:29 +0200	[thread overview]
Message-ID: <20070508174529.7298cae4@hyperion.delvare> (raw)

Linus,

Please pull the hwmon subsystem updates for Linux 2.6.22 from:

git://jdelvare.pck.nerim.net/jdelvare-2.6 hwmon-for-linus

There are 3 new hardware monitoring drivers (ad7418 for the Analog
Devices AD7416, AD7417 and AD7418, coretemp for the Intel Core/Core 2
integrated sensors and max6650 for the Maxim MAX6650 and MAX6651),
added support for the SMSC LPC47M292 sensors, and a few random fixes
and cleanups. Additionally, 5 drivers (lm78, smsc47b397, smsc47m1,
w83627hf and w83781d) have been converted from i2c-isa to platform
drivers. The rest should follow soon, so that we can get rid of i2c-isa
in 2.6.23.

 Documentation/hwmon/coretemp        |   36 +
 Documentation/hwmon/max6650         |   53 ++
 Documentation/hwmon/smsc47m1        |   11 +-
 Documentation/hwmon/smsc47m192      |    7 +-
 Documentation/hwmon/sysfs-interface |    7 +
 MAINTAINERS                         |   12 +
 arch/i386/kernel/msr.c              |  106 +---
 arch/i386/lib/msr-on-cpu.c          |   73 ++-
 drivers/hwmon/Kconfig               |  146 +++--
 drivers/hwmon/Makefile              |    3 +
 drivers/hwmon/ad7418.c              |  373 +++++++++++
 drivers/hwmon/ams/ams-core.c        |    3 -
 drivers/hwmon/ams/ams-i2c.c         |    8 +-
 drivers/hwmon/coretemp.c            |  406 ++++++++++++
 drivers/hwmon/f71805f.c             |   16 +-
 drivers/hwmon/hwmon-vid.c           |    6 +-
 drivers/hwmon/lm75.c                |   82 ++--
 drivers/hwmon/lm78.c                |  662 ++++++++++++--------
 drivers/hwmon/lm87.c                |    2 +-
 drivers/hwmon/max6650.c             |  693 ++++++++++++++++++++
 drivers/hwmon/pc87427.c             |   15 +-
 drivers/hwmon/smsc47b397.c          |  228 ++++---
 drivers/hwmon/smsc47m1.c            |  606 +++++++++++-------
 drivers/hwmon/smsc47m192.c          |    4 +-
 drivers/hwmon/vt1211.c              |   13 +
 drivers/hwmon/w83627hf.c            |  670 ++++++++++----------
 drivers/hwmon/w83781d.c             | 1205 +++++++++++++++++++----------------
 include/asm-i386/msr.h              |   12 +-
 include/asm-x86_64/msr.h            |   11 +
 29 files changed, 3777 insertions(+), 1692 deletions(-)
 create mode 100644 Documentation/hwmon/coretemp
 create mode 100644 Documentation/hwmon/max6650
 create mode 100644 drivers/hwmon/ad7418.c
 create mode 100644 drivers/hwmon/coretemp.c
 create mode 100644 drivers/hwmon/max6650.c

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

Alessandro Zummo (1):
      hwmon: New AD7416, AD7417 and AD7418 driver

Hans-Juergen Koch (1):
      hwmon: New max6650 driver

Jan Engelhardt (1):
      Use menuconfig objects - hwmon

Jean Delvare (22):
      hwmon/smsc47m192: Document the LPC47M292 as supported
      hwmon: Request the I/O regions in platform drivers
      hwmon/smsc47m1: Add support for the LPC47M292
      hwmon/smsc47m1: Get rid of a useless mutex
      hwmon: Only call vid_which_vrm() when needed
      hwmon/w83627hf: Preliminary cleanups
      hwmon/w83627hf: Convert to a platform driver
      hwmon: Document the new fan1_target interface file
      hwmon/smsc47m1: Convert to a platform driver
      hwmon/smsc47m1: Use DRVNAME consistently
      hwmon/smsc47m1: Use dynamic sysfs callbacks
      hwmon/lm78: No longer use i2c-isa
      hwmon/lm78: Be less i2c_client-centric
      hwmon/lm78: Use dynamic sysfs callbacks
      hwmon/lm75: Use dynamic sysfs callbacks
      hwmon/w83781d: No longer use i2c-isa
      hwmon/w83781d: Clean up conversion macros
      hwmon/w83781d: Be less i2c_client-centric
      hwmon/w83781d: Use dynamic sysfs callbacks
      hwmon/w83781d: Deprecate W83627HF support
      hwmon/smsc47b397: Convert to a platform driver
      hwmon/smsc47b397: Use dynamic sysfs callbacks

Nicolas Boichat (1):
      i386: Use functions from library in msr driver

Olaf Hering (1):
      hwmon/ams: Do not print error on systems without apple motion sensor

Rudolf Marek (4):
      hwmon-vid: Add support for VIA Esther
      i386: Add safe variants of rdmsr_on_cpu and wrmsr_on_cpu
      hwmon: New coretemp driver
      hwmon/coretemp: Add documentation

Stelian Pop (1):
      hwmon/ams: Fix I2C read retry logic

Thanks,
-- 
Jean Delvare

             reply	other threads:[~2007-05-08 15:46 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-05-08 15:45 Jean Delvare [this message]
2007-05-08 18:34 ` Linus Torvalds
2007-05-08 18:49   ` Jean Delvare

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20070508174529.7298cae4@hyperion.delvare \
    --to=khali@linux-fr.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=lm-sensors@lm-sensors.org \
    --cc=torvalds@linux-foundation.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®