From: Guenter Roeck <guenter.roeck@ericsson.com>
To: torvalds@linux-foundation.org
Cc: linux-kernel@vger.kernel.org, lm-sensors@lm-sensors.org
Subject: [lm-sensors] [GIT PULL] hwmon updates for 3.5-rc1
Date: Tue, 22 May 2012 20:18:59 +0000 [thread overview]
Message-ID: <20120522201859.GA1068@ericsson.com> (raw)
[-- Attachment #1.1: Type: text/plain, Size: 2899 bytes --]
Hi Linus,
Please pull hwmon updates for Linux 3.5-rc1 from signed tag:
git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git hwmon-for-linus
Thanks,
Guenter
------
The following changes since commit 76e10d158efb6d4516018846f60c2ab5501900bc:
Linux 3.4 (2012-05-20 15:29:13 -0700)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git hwmon-for-linus
for you to fetch changes up to 4573acbc461b8089198500cee06ef0cdc5b70e82:
hwmon: (it87) Make temp3 attribute conditional for IT8782F (2012-05-22 06:48:49 -0700)
----------------------------------------------------------------
hwmon updates for 3.5-rc1
New driver for INA219 and INA226, added support for IT8782F and IT8783E/F to
it87 driver, plus cleanups in a couple of drivers.
----------------------------------------------------------------
Axel Lin (1):
hwmon: use module_pci_driver
Felten, Lothar (1):
hwmon: INA219 and INA226 support
Guenter Roeck (9):
hwmon: (it87) Add support for IT8782F and IT8783E/F
hwmon: (ad7314) Remove unused defines, and rename OFFSET to SHIFT
hwmon: (ntc_thermistor) Convert to devm_kzalloc
hwmon: (ntc_thermistor) Return error code from hwmon_device_register
hwmon: (ntc_thermistor) Optimize and fix build warning
hwmon: (ntc_thermistor) Fix checkpatch warning
hwmon: (it87) Create voltage attributes only if voltage is enabled
hwmon: (it87) Convert to use devm_kzalloc and devm_request_region
hwmon: (it87) Make temp3 attribute conditional for IT8782F
Kyle McMartin (5):
acpi_power_meter: use the same struct {rw,ro}_sensor_template for both
acpi_power_meter: use a {RW,RO}_SENSOR_TEMPLATE macro to clean things up
acpi_power_meter: remove duplicate code between register_{ro,rw}_attrs
acpi_power_meter: drop meter_rw_attrs, use common meter_attrs
acpi_power_meter: clean up code around setup_attrs
Documentation/hwmon/ina2xx | 29 +++
Documentation/hwmon/it87 | 28 ++-
drivers/hwmon/Kconfig | 13 ++
drivers/hwmon/Makefile | 1 +
drivers/hwmon/acpi_power_meter.c | 166 +++++++---------
drivers/hwmon/ad7314.c | 11 +-
drivers/hwmon/fam15h_power.c | 13 +-
drivers/hwmon/ina2xx.c | 368 ++++++++++++++++++++++++++++++++
drivers/hwmon/it87.c | 384 +++++++++++++++++++++++++---------
drivers/hwmon/k10temp.c | 13 +-
drivers/hwmon/k8temp.c | 13 +-
drivers/hwmon/ntc_thermistor.c | 191 ++++++++---------
include/linux/platform_data/ina2xx.h | 19 ++
13 files changed, 902 insertions(+), 347 deletions(-)
create mode 100644 Documentation/hwmon/ina2xx
create mode 100644 drivers/hwmon/ina2xx.c
create mode 100644 include/linux/platform_data/ina2xx.h
[-- Attachment #1.2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 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
WARNING: multiple messages have this Message-ID (diff)
From: Guenter Roeck <guenter.roeck@ericsson.com>
To: torvalds@linux-foundation.org
Cc: linux-kernel@vger.kernel.org, lm-sensors@lm-sensors.org
Subject: [GIT PULL] hwmon updates for 3.5-rc1
Date: Tue, 22 May 2012 13:18:59 -0700 [thread overview]
Message-ID: <20120522201859.GA1068@ericsson.com> (raw)
[-- Attachment #1: Type: text/plain, Size: 2899 bytes --]
Hi Linus,
Please pull hwmon updates for Linux 3.5-rc1 from signed tag:
git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git hwmon-for-linus
Thanks,
Guenter
------
The following changes since commit 76e10d158efb6d4516018846f60c2ab5501900bc:
Linux 3.4 (2012-05-20 15:29:13 -0700)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git hwmon-for-linus
for you to fetch changes up to 4573acbc461b8089198500cee06ef0cdc5b70e82:
hwmon: (it87) Make temp3 attribute conditional for IT8782F (2012-05-22 06:48:49 -0700)
----------------------------------------------------------------
hwmon updates for 3.5-rc1
New driver for INA219 and INA226, added support for IT8782F and IT8783E/F to
it87 driver, plus cleanups in a couple of drivers.
----------------------------------------------------------------
Axel Lin (1):
hwmon: use module_pci_driver
Felten, Lothar (1):
hwmon: INA219 and INA226 support
Guenter Roeck (9):
hwmon: (it87) Add support for IT8782F and IT8783E/F
hwmon: (ad7314) Remove unused defines, and rename OFFSET to SHIFT
hwmon: (ntc_thermistor) Convert to devm_kzalloc
hwmon: (ntc_thermistor) Return error code from hwmon_device_register
hwmon: (ntc_thermistor) Optimize and fix build warning
hwmon: (ntc_thermistor) Fix checkpatch warning
hwmon: (it87) Create voltage attributes only if voltage is enabled
hwmon: (it87) Convert to use devm_kzalloc and devm_request_region
hwmon: (it87) Make temp3 attribute conditional for IT8782F
Kyle McMartin (5):
acpi_power_meter: use the same struct {rw,ro}_sensor_template for both
acpi_power_meter: use a {RW,RO}_SENSOR_TEMPLATE macro to clean things up
acpi_power_meter: remove duplicate code between register_{ro,rw}_attrs
acpi_power_meter: drop meter_rw_attrs, use common meter_attrs
acpi_power_meter: clean up code around setup_attrs
Documentation/hwmon/ina2xx | 29 +++
Documentation/hwmon/it87 | 28 ++-
drivers/hwmon/Kconfig | 13 ++
drivers/hwmon/Makefile | 1 +
drivers/hwmon/acpi_power_meter.c | 166 +++++++---------
drivers/hwmon/ad7314.c | 11 +-
drivers/hwmon/fam15h_power.c | 13 +-
drivers/hwmon/ina2xx.c | 368 ++++++++++++++++++++++++++++++++
drivers/hwmon/it87.c | 384 +++++++++++++++++++++++++---------
drivers/hwmon/k10temp.c | 13 +-
drivers/hwmon/k8temp.c | 13 +-
drivers/hwmon/ntc_thermistor.c | 191 ++++++++---------
include/linux/platform_data/ina2xx.h | 19 ++
13 files changed, 902 insertions(+), 347 deletions(-)
create mode 100644 Documentation/hwmon/ina2xx
create mode 100644 drivers/hwmon/ina2xx.c
create mode 100644 include/linux/platform_data/ina2xx.h
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]
next reply other threads:[~2012-05-22 20:18 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-05-22 20:18 Guenter Roeck [this message]
2012-05-22 20:18 ` [GIT PULL] hwmon updates for 3.5-rc1 Guenter Roeck
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=20120522201859.GA1068@ericsson.com \
--to=guenter.roeck@ericsson.com \
--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 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.