From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S934208AbcCNNvl (ORCPT ); Mon, 14 Mar 2016 09:51:41 -0400 Received: from forward.webhostbox.net ([5.100.155.185]:41227 "EHLO forward.webhostbox.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932123AbcCNNvi (ORCPT ); Mon, 14 Mar 2016 09:51:38 -0400 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.6 Date: Mon, 14 Mar 2016 06:51:33 -0700 Message-Id: <1457963493-24735-1-git-send-email-linux@roeck-us.net> X-Mailer: git-send-email 2.5.0 X-Authenticated_sender: guenter@roeck-us.net X-OutGoing-Spam-Status: No, score=-1.0 X-CMAE-Score: 0 X-CMAE-Analysis: v=2.1 cv=NfdGrz34 c=1 sm=1 tr=0 a=QNED+QcLUkoL9qulTODnwA==:117 a=2cfIYNtKkjgZNaOwnGXpGw==:17 a=L9H7d07YOLsA:10 a=9cW_t1CCXrUA:10 a=s5jvgZ67dGcA:10 a=7OsogOcEt9IA:10 a=b-sq3l0IbkxuIabqJjUA:9 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.6 from signed tag: git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git hwmon-for-linus-v4.6 Thanks, Guenter ------ The following changes since commit fc77dbd34c5c99bce46d40a2491937c3bcbd10af: Linux 4.5-rc6 (2016-02-28 08:41:20 -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.6 for you to fetch changes up to 630300d5fcb6ee9c32c75d8b576c100fbb794159: hwmon: Create an NSA320 hardware monitoring driver (2016-03-08 18:40:49 -0800) ---------------------------------------------------------------- hwmon updates for v4.5: - New drivers for NSA320 and LTC2990 - Added support for ADM1278 to adm1275 driver - Added support for ncpXXxh103 to ntc_thermistor driver - Renamed vexpress hwmon implementation - Minor cleanups and improvements ---------------------------------------------------------------- Adam Baker (2): hwmon: Define binding for the nsa320-hwmon driver hwmon: Create an NSA320 hardware monitoring driver Guenter Roeck (1): hwmon: (adm1275) Add support for ADM1278 Joseph McNally (1): hwmon: (ntc_thermistor) Add support for ncpXXxh103 Masanari Iida (1): Doc: hwmon: Fix typo "montoring" in hwmon Mike Looijmans (1): hwmon: Add LTC2990 sensor driver Sanchayan Maity (3): hwmon: (iio_hwmon) Allow the driver to accept hypen in device tree node names ARM: dts: Change iio_hwmon nodes to use hypen in node names ARM: dts: vfxxx: Add iio_hwmon node for ADC temperature channel Sudeep Holla (1): hwmon: (vexpress) rename vexpress hwmon implementation .../devicetree/bindings/hwmon/nsa320-mcu.txt | 20 ++ .../devicetree/bindings/hwmon/ntc_thermistor.txt | 1 + .../devicetree/bindings/iio/iio-bindings.txt | 2 +- Documentation/hwmon/adm1275 | 29 ++- Documentation/hwmon/lm25066 | 2 +- Documentation/hwmon/ltc2990 | 43 +++++ Documentation/hwmon/max16064 | 2 +- Documentation/hwmon/max34440 | 2 +- Documentation/hwmon/max8688 | 2 +- Documentation/hwmon/nsa320 | 53 +++++ Documentation/hwmon/ntc_thermistor | 4 +- Documentation/hwmon/pmbus | 2 +- Documentation/hwmon/zl6100 | 2 +- arch/arm/boot/dts/imx23.dtsi | 2 +- arch/arm/boot/dts/imx28.dtsi | 2 +- arch/arm/boot/dts/vfxxx.dtsi | 5 + drivers/hwmon/Kconfig | 31 ++- drivers/hwmon/Makefile | 4 +- drivers/hwmon/iio_hwmon.c | 11 +- drivers/hwmon/ltc2990.c | 161 +++++++++++++++ drivers/hwmon/nsa320-hwmon.c | 215 +++++++++++++++++++++ drivers/hwmon/ntc_thermistor.c | 44 +++++ drivers/hwmon/pmbus/Kconfig | 4 +- drivers/hwmon/pmbus/adm1275.c | 56 +++++- drivers/hwmon/{vexpress.c => vexpress-hwmon.c} | 0 include/linux/platform_data/ntc_thermistor.h | 1 + 26 files changed, 677 insertions(+), 23 deletions(-) create mode 100644 Documentation/devicetree/bindings/hwmon/nsa320-mcu.txt create mode 100644 Documentation/hwmon/ltc2990 create mode 100644 Documentation/hwmon/nsa320 create mode 100644 drivers/hwmon/ltc2990.c create mode 100644 drivers/hwmon/nsa320-hwmon.c rename drivers/hwmon/{vexpress.c => vexpress-hwmon.c} (100%)