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=-11.8 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_HELO_NONE,SPF_PASS 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 16F34C4360C for ; Thu, 10 Oct 2019 09:20:51 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id DFA9A21D6C for ; Thu, 10 Oct 2019 09:20:50 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1570699250; bh=qby+o55nipuRxov+w0S+fuJgofFCvVS/guCcruHdElI=; h=Subject:To:From:Date:List-ID:From; b=b40Qc5wBcSh81Eaj2jBxgO2a0JsonqutWtri571PrtGJSnNNgYrLmsWITiSr9KUq6 kztugR+/O3/WZZZpZ8L0i0K9NIkdkvPecSsoA5GRFR1jeVwdqEhIhAXoEiPAK93Iqa DSIO2cI94H9eSv8ITm/tFBPh4jd5Y5h1bGqvc2x4= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2387738AbfJJJUu (ORCPT ); Thu, 10 Oct 2019 05:20:50 -0400 Received: from mail.kernel.org ([198.145.29.99]:43484 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2387478AbfJJJUu (ORCPT ); Thu, 10 Oct 2019 05:20:50 -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 2AC4021D7A; Thu, 10 Oct 2019 09:20:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1570699249; bh=qby+o55nipuRxov+w0S+fuJgofFCvVS/guCcruHdElI=; h=Subject:To:From:Date:From; b=v/FFBa+IKy93LkxZdYSyO4XVgsLuFGqSdlYe5dbp8kYLlGsxKl9mWTy9JxLMwZyM5 72Jeq7yxfb1po3soPj/KShXYpXxLZM0mB6ejfPY7j5HrmNdmwuYSDLObchP+kROXuk a2ZWwV9xWcAhrJbzXh31r0qyRykOOUgiQ9hpL7kM= Subject: patch "iio: Fix an undefied reference error in noa1305_probe" added to staging-linus To: zhongjiang@huawei.com, Jonathan.Cameron@huawei.com, Stable@vger.kernel.org From: Date: Thu, 10 Oct 2019 11:20:09 +0200 Message-ID: <15706992099520@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 iio: Fix an undefied reference error in noa1305_probe 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 a26e0fbe06e20077afdaa40d1a90092f16b0bc67 Mon Sep 17 00:00:00 2001 From: zhong jiang Date: Mon, 23 Sep 2019 10:04:32 +0800 Subject: iio: Fix an undefied reference error in noa1305_probe I hit the following error when compile the kernel. drivers/iio/light/noa1305.o: In function `noa1305_probe': noa1305.c:(.text+0x65): undefined reference to `__devm_regmap_init_i2c' make: *** [vmlinux] Error 1 Signed-off-by: zhong jiang Cc: Signed-off-by: Jonathan Cameron --- drivers/iio/light/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/iio/light/Kconfig b/drivers/iio/light/Kconfig index 08d7e1ef2186..4a1a883dc061 100644 --- a/drivers/iio/light/Kconfig +++ b/drivers/iio/light/Kconfig @@ -314,6 +314,7 @@ config MAX44009 config NOA1305 tristate "ON Semiconductor NOA1305 ambient light sensor" depends on I2C + select REGMAP_I2C help Say Y here if you want to build support for the ON Semiconductor NOA1305 ambient light sensor. -- 2.23.0