From nobody Mon Nov 25 16:29:20 2024 Received: from metis.whiteo.stw.pengutronix.de (metis.whiteo.stw.pengutronix.de [185.203.201.7]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 3BF2470816 for ; Fri, 25 Oct 2024 16:17:49 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=185.203.201.7 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1729873072; cv=none; b=upmCdtlc/CKq549lIXvqZ0wHJyqGuJhWyM3wexbiEzJl4JEDmD7uPGuK2k2F9hqEkPbDPXAZYaen44m9ZJ6o4We8QTL2Q8De/u78aR5H9fWIhYN4QpKBEsoQO7+U1zcK2vFPqf1DkLdUbroMB5QJnsjePldUmi2cD+sGQ/Lhmow= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1729873072; c=relaxed/simple; bh=XRWM9Q9oHyB0+6EdcuJj+cQIF/yPqjovpdPt+wCJ5Tk=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version; b=fQQYIZSeuDuBMr/B0d8kDMxiVORXX1YosWJvS0M0ENmyPORW+73CCoNkQqVCyZiogHJY7t2wUm9QKZjvkSpDkfwBJoGBxH/zhf/TFQqKWwfnCb20JEA/jffZhKcIn318fyHD7GTB8i4GHvvke9EIrWC4eg7FhGmm1Ca5BgmvqsU= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=pengutronix.de; spf=pass smtp.mailfrom=pengutronix.de; arc=none smtp.client-ip=185.203.201.7 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=pengutronix.de Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=pengutronix.de Received: from dude05.red.stw.pengutronix.de ([2a0a:edc0:0:1101:1d::54]) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1t4N0T-0000aN-5F; Fri, 25 Oct 2024 18:17:45 +0200 From: Philipp Zabel To: Stephen Rothwell , Herve Codina , Rob Herring Cc: linux-kernel@vger.kernel.org, linux-next@vger.kernel.org, Arnd Bergmann , Greg Kroah-Hartman , Philipp Zabel Subject: [PATCH v2] misc: Silence warning when building the LAN966x device tree overlay Date: Fri, 25 Oct 2024 18:17:39 +0200 Message-Id: <20241025161739.3643796-1-p.zabel@pengutronix.de> X-Mailer: git-send-email 2.39.5 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-SA-Exim-Connect-IP: 2a0a:edc0:0:1101:1d::54 X-SA-Exim-Mail-From: p.zabel@pengutronix.de X-SA-Exim-Scanned: No (on metis.whiteo.stw.pengutronix.de); SAEximRunCond expanded to false X-PTX-Original-Recipient: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" Silence the following warning when building the LAN966x device tree overlay: drivers/misc/lan966x_pci.dtso:34.23-40.7: Warning (interrupts_property): /f= ragment@0/__overlay__/pci-ep-bus@0/oic@e00c0120: Missing interrupt-parent Reported-by: Stephen Rothwell Link: https://lore.kernel.org/all/20241025110919.64b1cffb@canb.auug.org.au/ Fixes: 185686beb464 ("misc: Add support for LAN966x PCI device") Signed-off-by: Philipp Zabel Acked-by: Herve Codina --- The referenced commit is in the reset tree. Changes in v2: - Do not handle W=3D1 warnings. - Link to v1: https://lore.kernel.org/all/20241025145353.1620806-1-p.zabel@= pengutronix.de/ --- drivers/misc/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/misc/Makefile b/drivers/misc/Makefile index 885b22989580..196fb730817e 100644 --- a/drivers/misc/Makefile +++ b/drivers/misc/Makefile @@ -72,6 +72,7 @@ obj-$(CONFIG_TPS6594_PFSM) +=3D tps6594-pfsm.o obj-$(CONFIG_NSM) +=3D nsm.o obj-$(CONFIG_MARVELL_CN10K_DPI) +=3D mrvl_cn10k_dpi.o lan966x-pci-objs :=3D lan966x_pci.o +DTC_FLAGS_lan966x_pci :=3D -Wno-interrupts_property lan966x-pci-objs +=3D lan966x_pci.dtbo.o obj-$(CONFIG_MCHP_LAN966X_PCI) +=3D lan966x-pci.o obj-y +=3D keba/ --=20 2.39.5