From patchwork Sat Sep 8 15:17:00 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jonathan Cameron X-Patchwork-Id: 10593127 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 97CB514E2 for ; Sat, 8 Sep 2018 15:17:05 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 84ECB2A580 for ; Sat, 8 Sep 2018 15:17:05 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 776162A58C; Sat, 8 Sep 2018 15:17:05 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-8.0 required=2.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 26CC82A580 for ; Sat, 8 Sep 2018 15:17:05 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726824AbeIHUDM (ORCPT ); Sat, 8 Sep 2018 16:03:12 -0400 Received: from mail.kernel.org ([198.145.29.99]:60090 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726765AbeIHUDM (ORCPT ); Sat, 8 Sep 2018 16:03:12 -0400 Received: from archlinux (cpc91196-cmbg18-2-0-cust659.5-4.cable.virginm.net [81.96.234.148]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id E365D206BB; Sat, 8 Sep 2018 15:17:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1536419823; bh=wQCInpV6SS6Lu/93X7bQGiN8ODc8sPATBoTc3Q5bGI4=; h=Date:From:To:Subject:From; b=Rjdo8t5vax1/BzwXtUUpcT5HRNm7MFYCiLrpJ4HOTpK+pCn7fr5VIMOy493KbLnHX Uqpx61SSZjjuRwt5AOnjddj8yxgdx09IaBM13/VOcSD37oQFal0UDilumbFZeiXhbN TwkhW2I53BS4xBz3BKf71uXto4x9Otr6wDHydhOg= Date: Sat, 8 Sep 2018 16:17:00 +0100 From: Jonathan Cameron To: gregkh@linuxfoundation.org, linux-iio@vger.kernel.org Subject: [PULL] First set of IIO fixes for the 4.19 cycle Message-ID: <20180908161700.10eb1fb3@archlinux> X-Mailer: Claws Mail 3.17.1 (GTK+ 2.24.32; x86_64-pc-linux-gnu) MIME-Version: 1.0 Sender: linux-iio-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-iio@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP The following changes since commit 6d4abf1c0e265d8e99c155b91c1cf44e37793e53: staging: axis-fifo: fix return value check in axis_fifo_probe() (2018-07-28 09:26:31 +0200) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git tags/iio-fixes-4.19a for you to fetch changes up to a13bf65f3f2e36008ea60b49d3bda2527e09fd9c: iio: imu: st_lsm6dsx: take into account ts samples in wm configuration (2018-09-02 21:19:53 +0100) ---------------------------------------------------------------- First set of IIO fixes for the 4.19 cycle. * ad9523 - sysfs write should return the number of characters used or an error, not 0 which could result in an infinite loop in userspace. * lsm6dsx - Fix computation of length when updating the watermark to include timestamps avoiding the watermark being set earlier than intended. * maxim_thermocouple - Revert a patch adding the max31856 as it's not actually compatible with the register set that this driver supports. * si1133 - Fix an impossible value check so we don't always error out whether the passed in value is good or bad. ---------------------------------------------------------------- Colin Ian King (1): iio: light: si1133 fix test for val being not zero or not one. Lars-Peter Clausen (1): iio: ad9523: Fix return value for ad952x_store() Lorenzo Bianconi (1): iio: imu: st_lsm6dsx: take into account ts samples in wm configuration Matt Ranostay (1): Revert "iio: temperature: maxim_thermocouple: add MAX31856 part" drivers/iio/frequency/ad9523.c | 2 +- drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_buffer.c | 13 ++++++------- drivers/iio/light/si1133.c | 2 +- drivers/iio/temperature/maxim_thermocouple.c | 1 - 4 files changed, 8 insertions(+), 10 deletions(-)