From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758235AbcAKEP2 (ORCPT ); Sun, 10 Jan 2016 23:15:28 -0500 Received: from bh-25.webhostbox.net ([208.91.199.152]:45167 "EHLO bh-25.webhostbox.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757950AbcAKEP1 (ORCPT ); Sun, 10 Jan 2016 23:15:27 -0500 From: Guenter Roeck To: torvalds@linuxfoundation.org Cc: linux-kernel@vger.kernel.org, lm-sensors@lm-sensors.org Subject: [GIT PULL] hwmon updates for v4.5 Date: Sun, 10 Jan 2016 20:15:24 -0800 Message-Id: <1452485724-3889-1-git-send-email-linux@roeck-us.net> X-Mailer: git-send-email 2.1.4 X-Authenticated_sender: guenter@roeck-us.net X-OutGoing-Spam-Status: No, score=-1.0 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - bh-25.webhostbox.net X-AntiAbuse: Original Domain - vger.kernel.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - roeck-us.net X-Get-Message-Sender-Via: bh-25.webhostbox.net: authenticated_id: guenter@roeck-us.net X-Authenticated-Sender: bh-25.webhostbox.net: guenter@roeck-us.net X-Source: X-Source-Args: X-Source-Dir: Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Linus, Please pull hwmon updates for Linux v4.5 from signed tag: git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git hwmon-for-linus-v4.5 Thanks, Guenter ------ The following changes since commit a3a316cfc41ab3e7b9e0079338f8ea9dff911d88: hwmon: (sht15) Select CONFIG_BITREVERSE (2015-12-18 08:19:52 -0800) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git tags/hwmon-for-linus-v4.5 for you to fetch changes up to 91918d13eb17b8c11a9b6b76bfdd7cc0efab4f50: hwmon: (nct6683) Add basic support for NCT6683 on Mitac boards (2016-01-09 07:31:58 -0800) ---------------------------------------------------------------- Notable hwmon updates for v4.5: Add basic support for NCT6683 on Mitac boards Add support for AMD new 15h processors to fam15h_power driver Add pmbus client driver for LTC3815 Remove htu21 driver (now supported by iio subsystem) ---------------------------------------------------------------- Guenter Roeck (3): hwmon: (htu21) Remove driver hwmon: (pmbus) Add client driver for LTC3815 hwmon: (nct6683) Add basic support for NCT6683 on Mitac boards Huang Rui (2): hwmon: (fam15h_power) Add support for AMD new 15h processors MAINTAINERS: change the maintainer of fam15h_power driver Julia Lawall (2): hwmon: (nct6683,nct6775) constify sensor_template_group structures hwmon: (ibmaem) constify aem_rw_sensor_template and aem_ro_sensor_template structures CREDITS | 8 ++ Documentation/hwmon/htu21 | 46 --------- Documentation/hwmon/ltc3815 | 61 ++++++++++++ MAINTAINERS | 4 +- drivers/hwmon/Kconfig | 10 -- drivers/hwmon/Makefile | 1 - drivers/hwmon/fam15h_power.c | 7 +- drivers/hwmon/htu21.c | 174 ---------------------------------- drivers/hwmon/ibmaem.c | 12 +-- drivers/hwmon/nct6683.c | 89 ++++++++++++----- drivers/hwmon/nct6775.c | 11 ++- drivers/hwmon/pmbus/Kconfig | 10 ++ drivers/hwmon/pmbus/Makefile | 1 + drivers/hwmon/pmbus/ltc3815.c | 215 ++++++++++++++++++++++++++++++++++++++++++ 14 files changed, 381 insertions(+), 268 deletions(-) delete mode 100644 Documentation/hwmon/htu21 create mode 100644 Documentation/hwmon/ltc3815 delete mode 100644 drivers/hwmon/htu21.c create mode 100644 drivers/hwmon/pmbus/ltc3815.c