From patchwork Wed Mar 30 01:56:52 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 12795403 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 8F104C433F5 for ; Wed, 30 Mar 2022 01:56:59 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S241744AbiC3B6l (ORCPT ); Tue, 29 Mar 2022 21:58:41 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:58332 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233672AbiC3B6k (ORCPT ); Tue, 29 Mar 2022 21:58:40 -0400 Received: from bombadil.infradead.org (bombadil.infradead.org [IPv6:2607:7c80:54:e::133]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 3A41260E4; Tue, 29 Mar 2022 18:56:55 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=Content-Transfer-Encoding: MIME-Version:Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To:Content-Type: Content-ID:Content-Description:In-Reply-To:References; bh=ggJNGMpkihFhJWyUJhQRWh604kRYGl5zlZQIzdqWw8w=; b=l93siP1gZgio7hGsz9Q/dEhPq1 x/zLngcp77PgAqflGyDLWSjWS9JqqC2s0dFXcA1mJqoOxA9qFQQPcmvJaGEiwOVffryN+jlUFLb00 suHXUjD4+nva25aF+tg1jT3kXURWO9ZSy0X/1SoRSnuXjoK8hhUSYGV5WI4B0Rs561yCqXINnq84y pzBHqcUNowQZhx8V1+0gmQX+oINmR2gtV1juodFyMHhpY7q3NkqynPWs3eLyzh5X3bXJGIBBTgdxW hA++MHNve4hU3YbkaLIif5UKMnk4gm9DCGiaarHb9ldZmCqtSDWCLzWDnTvf+L3+6gPaqezwRkO+L rnInJ0Xw==; Received: from [2601:1c0:6280:3f0::aa0b] (helo=bombadil.infradead.org) by bombadil.infradead.org with esmtpsa (Exim 4.94.2 #2 (Red Hat Linux)) id 1nZNZt-00Dw29-Sz; Wed, 30 Mar 2022 01:56:54 +0000 From: Randy Dunlap To: linux-kernel@vger.kernel.org Cc: Randy Dunlap , kernel test robot , Marek Vasut , Sakari Ailus , Michael Tretter , Pengutronix Kernel Team , linux-media@vger.kernel.org, Mauro Carvalho Chehab Subject: [PATCH -next] media: isl7998x: select V4L2_FWNODE to fix build error Date: Tue, 29 Mar 2022 18:56:52 -0700 Message-Id: <20220330015652.5420-1-rdunlap@infradead.org> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org Fix build error when VIDEO_ISL7998X=y and V4L2_FWNODE=m by selecting V4L2_FWNODE. microblaze-linux-ld: drivers/media/i2c/isl7998x.o: in function `isl7998x_probe': (.text+0x8f4): undefined reference to `v4l2_fwnode_endpoint_parse' Fixes: 51ef2be546e2 ("media: i2c: isl7998x: Add driver for Intersil ISL7998x") Signed-off-by: Randy Dunlap Reported-by: kernel test robot Cc: Marek Vasut Cc: Sakari Ailus Cc: Michael Tretter Cc: Pengutronix Kernel Team Cc: linux-media@vger.kernel.org Cc: Mauro Carvalho Chehab Reviewed-by: Michael Tretter --- drivers/media/i2c/Kconfig | 1 + 1 file changed, 1 insertion(+) --- linux-next-20220329.orig/drivers/media/i2c/Kconfig +++ linux-next-20220329/drivers/media/i2c/Kconfig @@ -1177,6 +1177,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.