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=-16.2 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH, MAILING_LIST_MULTI,MENTIONS_GIT_HOSTING,SIGNED_OFF_BY,SPF_HELO_NONE,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 A30C6C4363D for ; Tue, 22 Sep 2020 16:37:24 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 510E223A1B for ; Tue, 22 Sep 2020 16:37:24 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1600792644; bh=XEZ4MwBZbCDJkYU4fVNtraNK2OvU2KYkLalKB2g4aLc=; h=Subject:To:From:Date:List-ID:From; b=ZDmEihmxKwYzqpixnXKLT6HkcVSBQb3xaRZf+QKFcHTnYQavNAOxT6Xl1n+d4c61y +KjGhxBkZUYi/EkMTh2h/PaH084Cjopmp48XCH8dlixv9+d65hTNAVe5vO3+zjnTQc M+IG+we3g1mBsXNgyozibrkS85zeP1pLHsugF7H4= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726607AbgIVQhX (ORCPT ); Tue, 22 Sep 2020 12:37:23 -0400 Received: from mail.kernel.org ([198.145.29.99]:60320 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726558AbgIVQhX (ORCPT ); Tue, 22 Sep 2020 12:37:23 -0400 Received: from localhost (83-86-74-64.cable.dynamic.v4.ziggo.nl [83.86.74.64]) (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 150A8239D2; Tue, 22 Sep 2020 16:37:22 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1600792643; bh=XEZ4MwBZbCDJkYU4fVNtraNK2OvU2KYkLalKB2g4aLc=; h=Subject:To:From:Date:From; b=QC5eACJD1X9orfXwM/Q8EnYcOgacKdNY9cM4XEhh8Sa12dJHK6eb3CjRWGAjKLFdF BD7Xm39pXHu79cI8dsoUt3KhsgX/R7GikGagbtkNSGSI3NUqdNebU7e16HVmWSbsmt iy7Z76/EuapSSgaEYPpFnoTPsyvh4jxS2G1AR+gw= Subject: patch "iio: adc: qcom-spmi-adc5: fix driver name" added to staging-linus To: dmitry.baryshkov@linaro.org, Jonathan.Cameron@huawei.com, Stable@vger.kernel.org, manivannan.sadhasivam@linaro.org From: Date: Tue, 22 Sep 2020 18:37:36 +0200 Message-ID: <1600792656855@kroah.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ANSI_X3.4-1968 Content-Transfer-Encoding: 8bit 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 iio: adc: qcom-spmi-adc5: fix driver name 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 fdb29f4de1374483291232ae7515e5e7bb464762 Mon Sep 17 00:00:00 2001 From: Dmitry Baryshkov Date: Thu, 10 Sep 2020 16:59:51 +0300 Subject: iio: adc: qcom-spmi-adc5: fix driver name Remove superfluous '.c' from qcom-spmi-adc5 device driver name. Fixes: e13d757279bb ("iio: adc: Add QCOM SPMI PMIC5 ADC driver") Signed-off-by: Dmitry Baryshkov Acked-by: Manivannan Sadhasivam Cc: Link: https://lore.kernel.org/r/20200910140000.324091-2-dmitry.baryshkov@linaro.org Signed-off-by: Jonathan Cameron --- drivers/iio/adc/qcom-spmi-adc5.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/iio/adc/qcom-spmi-adc5.c b/drivers/iio/adc/qcom-spmi-adc5.c index b4b73c9920b4..c10aa28be70a 100644 --- a/drivers/iio/adc/qcom-spmi-adc5.c +++ b/drivers/iio/adc/qcom-spmi-adc5.c @@ -982,7 +982,7 @@ static int adc5_probe(struct platform_device *pdev) static struct platform_driver adc5_driver = { .driver = { - .name = "qcom-spmi-adc5.c", + .name = "qcom-spmi-adc5", .of_match_table = adc5_match_table, }, .probe = adc5_probe, -- 2.28.0