From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-12.0 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI, MENTIONS_GIT_HOSTING,SIGNED_OFF_BY,SPF_PASS,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id DE2F8C43381 for ; Tue, 2 Apr 2019 06:51:38 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id A912A20857 for ; Tue, 2 Apr 2019 06:51:38 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1554187898; bh=DwtpV4WJxyyjJsvlfWTIoTXTQo0Oei7TLsx++i64RGs=; h=Subject:To:From:Date:List-ID:From; b=Y6IKv4tcaixYZk5tDX4bygHgHfQCHYeoxEdsUtnVE9Cuxlo3/Fg1jlWXnQHi1ZY7a Tz0zLlqKc6bPADmdeNJZAgfgBT12lzXK14FFLyn9KXaq1gYWXHxxqI71K1l38RUI6/ 54FE5c8EF6SASn/Vzb7FgQcicK0Nw8avqD2eN6Yg= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726462AbfDBGvi (ORCPT ); Tue, 2 Apr 2019 02:51:38 -0400 Received: from mail.kernel.org ([198.145.29.99]:44546 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726436AbfDBGvh (ORCPT ); Tue, 2 Apr 2019 02:51:37 -0400 Received: from localhost (83-86-89-107.cable.dynamic.v4.ziggo.nl [83.86.89.107]) (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 75A4E20833; Tue, 2 Apr 2019 06:51:36 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1554187896; bh=DwtpV4WJxyyjJsvlfWTIoTXTQo0Oei7TLsx++i64RGs=; h=Subject:To:From:Date:From; b=KU1CHMGO12/rMS5IKNrMjGWrJHclIqB7uROe16zlRg0dTMrIp1kddo5bIB4py9XHk Nm85md/RV9Yazjwh2TZmx2jb+l2HWRK/aGAFpyNQbwYAMwzGyd0bjTHBqXPUDrq+Cq uqXtVQ605l+AypYO9TgPyUpjRtH1Kg5tbdIYhAb0= Subject: patch "Staging: iio: meter: fixed typo" added to staging-linus To: leonardp@tr-host.de, Jonathan.Cameron@huawei.com, Stable@vger.kernel.org, michael.hennerich@analog.com From: Date: Tue, 02 Apr 2019 08:51:34 +0200 Message-ID: <155418789446145@kroah.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ANSI_X3.4-1968 Content-Transfer-Encoding: 8bit Sender: stable-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org This is a note to let you know that I've just added the patch titled Staging: iio: meter: fixed typo to my staging git tree which can be found at git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git in the staging-linus branch. The patch will show up in the next release of the linux-next tree (usually sometime within the next 24 hours during the week.) The patch will hopefully also be merged in Linus's tree for the next -rc kernel release. If you have any questions about this process, please let me know. >From 0a8a29be499cbb67df79370aaf5109085509feb8 Mon Sep 17 00:00:00 2001 From: Leonard Pollak Date: Wed, 13 Feb 2019 11:19:52 +0100 Subject: Staging: iio: meter: fixed typo This patch fixes an obvious typo, which will cause erroneously returning the Peak Voltage instead of the Peak Current. Signed-off-by: Leonard Pollak Cc: Acked-by: Michael Hennerich Signed-off-by: Jonathan Cameron --- drivers/staging/iio/meter/ade7854.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/iio/meter/ade7854.c b/drivers/staging/iio/meter/ade7854.c index 029c3bf42d4d..07774c000c5a 100644 --- a/drivers/staging/iio/meter/ade7854.c +++ b/drivers/staging/iio/meter/ade7854.c @@ -269,7 +269,7 @@ static IIO_DEV_ATTR_VPEAK(0644, static IIO_DEV_ATTR_IPEAK(0644, ade7854_read_32bit, ade7854_write_32bit, - ADE7854_VPEAK); + ADE7854_IPEAK); static IIO_DEV_ATTR_APHCAL(0644, ade7854_read_16bit, ade7854_write_16bit, -- 2.21.0