From nobody Mon Sep 29 22:30:55 2025 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 41D51C00140 for ; Mon, 15 Aug 2022 22:24:44 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1348719AbiHOWYl (ORCPT ); Mon, 15 Aug 2022 18:24:41 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:60566 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1350790AbiHOWSd (ORCPT ); Mon, 15 Aug 2022 18:18:33 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 6372865647; Mon, 15 Aug 2022 12:41:48 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id F3E9661089; Mon, 15 Aug 2022 19:41:47 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id DB87FC433D6; Mon, 15 Aug 2022 19:41:46 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1660592507; bh=R0wrMkXbfeQsqAlW1Rt+DoojY5n/s25qlPySHwrEnvI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=X1vULcDZoBL3t7zzSpIVTZ99DYTsMaoEGg//xophnsMoEH2Su2uzJNpBQD948Vr5i Q/2SlkgSEIikv3YIbwHYNkC9Gb9/++k79FREok4xpub0wmmKBfiBq8pOGNd0o9dIz2 hFTg8AZ81hUGk+90glt2DrqtTrU73yO/c2BI6nf0= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Randy Dunlap , kernel test robot , Marek Vasut , Pengutronix Kernel Team , Michael Tretter , Sakari Ailus , Mauro Carvalho Chehab Subject: [PATCH 5.19 0122/1157] media: isl7998x: select V4L2_FWNODE to fix build error Date: Mon, 15 Aug 2022 19:51:18 +0200 Message-Id: <20220815180444.489804539@linuxfoundation.org> X-Mailer: git-send-email 2.37.2 In-Reply-To: <20220815180439.416659447@linuxfoundation.org> References: <20220815180439.416659447@linuxfoundation.org> User-Agent: quilt/0.67 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" From: Randy Dunlap commit 81e005842d0b8167c059553a1c29c36d8a7a9329 upstream. Fix build error when VIDEO_ISL7998X=3Dy and V4L2_FWNODE=3Dm by selecting V4L2_FWNODE. microblaze-linux-ld: drivers/media/i2c/isl7998x.o: in function `isl7998x_pr= obe': (.text+0x8f4): undefined reference to `v4l2_fwnode_endpoint_parse' Cc: stable@vger.kernel.org # 5.18 and above Fixes: 51ef2be546e2 ("media: i2c: isl7998x: Add driver for Intersil ISL7998= x") Signed-off-by: Randy Dunlap Reported-by: kernel test robot Cc: Marek Vasut Cc: Pengutronix Kernel Team Reviewed-by: Michael Tretter Signed-off-by: Sakari Ailus Signed-off-by: Mauro Carvalho Chehab Signed-off-by: Greg Kroah-Hartman --- drivers/media/i2c/Kconfig | 1 + 1 file changed, 1 insertion(+) --- a/drivers/media/i2c/Kconfig +++ b/drivers/media/i2c/Kconfig @@ -1178,6 +1178,7 @@ config VIDEO_ISL7998X depends on OF_GPIO select MEDIA_CONTROLLER select VIDEO_V4L2_SUBDEV_API + select V4L2_FWNODE help Support for Intersil ISL7998x analog to MIPI-CSI2 or BT.656 decoder.