From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 6DF6A1A3164; Fri, 13 Mar 2026 09:22:59 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773393779; cv=none; b=gpfh5HnUfVSYffRFqnqNBF/wgjuT4G5gWZouSHjL48YHKBG+KrA3X95EhBAtp/FOQXcev98VXrummreC6BJ4c59j90P/lX8Ht48ZzzXWmj9rNQhZJ9Vbj6jf+zyCbYDZ58R/FwldniUzZHbftoc4CRxIAmm9oNOvlsx45j3Kh5g= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773393779; c=relaxed/simple; bh=OSkNcbUS9YGvPKDa8n1+2Deyv3usv6l4sfKN/25R4mE=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=svhVrDCPNyQxs5FvPYgUdV6Pbh5gxzIYab9yMcdxXm0+DCy608piSWC9sG7k/eQ3Ko2cSKnsImyMqLDjZ8gV+CqfbPVnLKpBYeuhtv9UhzzlVDa8Nbb4ZvFRvZOrQ6+5xxrVjE6SjC6zkWIIWmaULUziVF8fWJV778FzSIScWzQ= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=KP5AFQsV; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="KP5AFQsV" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 67B8DC19421; Fri, 13 Mar 2026 09:22:58 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1773393779; bh=OSkNcbUS9YGvPKDa8n1+2Deyv3usv6l4sfKN/25R4mE=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=KP5AFQsVD2fnagL9ktzranuODnZj5yec3IGDn8dCtYe3/snhvHtHl4hCuJDk5mIFX XTi/wT2P5RBqBcwVVK9nopqfH93px8aj7zV3cxTXaMox5XwwKQhJr6ATgMV4ahilsI wa5hi4eh1jsInBssCel8lPW4fKrsAbdJ0wHbpL84= Date: Fri, 13 Mar 2026 10:22:48 +0100 From: Greg Kroah-Hartman To: Bartosz Golaszewski Cc: Rob Herring , Bartosz Golaszewski , Saravana Kannan , "Rafael J. Wysocki" , Danilo Krummrich , "Christophe Leroy (CS GROUP)" , Shawn Guo , Sascha Hauer , Pengutronix Kernel Team , Fabio Estevam , Geert Uytterhoeven , Magnus Damm , Chen-Yu Tsai , Jernej Skrabec , Samuel Holland , Frank Li , devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, linuxppc-dev@lists.ozlabs.org, linux-arm-kernel@lists.infradead.org, imx@lists.linux.dev, linux-renesas-soc@vger.kernel.org, linux-sunxi@lists.linux.dev, driver-core@lists.linux.dev, Peng Fan Subject: Re: [PATCH v2 0/9] soc: remove direct accesses to of_root from drivers/soc/ Message-ID: <2026031332-widen-unpack-1f6f@gregkh> References: <20260223-soc-of-root-v2-0-b45da45903c8@oss.qualcomm.com> <20260224183832.GB3239922-robh@kernel.org> <2026031231-whiff-speculate-805a@gregkh> Precedence: bulk X-Mailing-List: devicetree@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: On Fri, Mar 13, 2026 at 01:36:49AM -0700, Bartosz Golaszewski wrote: > On Thu, 12 Mar 2026 16:18:38 +0100, Greg Kroah-Hartman > said: > > On Thu, Feb 26, 2026 at 10:28:26AM +0100, Bartosz Golaszewski wrote: > >> On Tue, Feb 24, 2026 at 7:38 PM Rob Herring wrote: > >> > > >> > On Mon, Feb 23, 2026 at 02:37:15PM +0100, Bartosz Golaszewski wrote: > >> > > linux/of.h declares a set of variables providing addresses of certain > >> > > key OF nodes. The pointers being variables can't profit from stubs > >> > > provided for when CONFIG_OF is disabled which means that drivers > >> > > accessing these variables can't profit from CONFIG_COMPILE_TEST=y > >> > > coverage. > >> > > > >> > > There are drivers under drivers/soc/ that access the of_root node. This > >> > > series introduces new OF helpers for reading the machine compatible and > >> > > model strings, exports an existing SoC helper that reads the machine > >> > > string from the root node and finally replaces all direct accesses to > >> > > of_root with new or already existing helper functions. > >> > > > >> > > Merging strategy: first two patches should be either acked by Rob or > >> > > picked up into an immutable branch based on v7.0-rc1, the rest can go > >> > > through the SoC tree. > >> > > >> > SoC tree is good. > >> > > >> > For all but patch 8, > >> > > >> > Reviewed-by: Rob Herring (Arm) > >> > > >> > >> FYI Rob also reviewed patch 8 now. Who would pick the patches up? Greg > >> KH? There does not seem to be a centralized SoC maintainer in > >> MAINTAINERS? > > > > Sure, let me take them now, thanks. > > > > greg k-h > > > > In the meantime Geert sent an alternative to patch 8/9 so this single one can > be dropped from the series. Ick, ok, I've now dropped that one commit from the tree. thanks, greg k-h