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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id A4EC4C001DC for ; Wed, 12 Jul 2023 15:58:53 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230381AbjGLP6x (ORCPT ); Wed, 12 Jul 2023 11:58:53 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:38570 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233083AbjGLP6v (ORCPT ); Wed, 12 Jul 2023 11:58:51 -0400 Received: from relay5-d.mail.gandi.net (relay5-d.mail.gandi.net [IPv6:2001:4b98:dc4:8::225]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 3A0C21BF9; Wed, 12 Jul 2023 08:58:46 -0700 (PDT) Received: by mail.gandi.net (Postfix) with ESMTPSA id 2B7791C0007; Wed, 12 Jul 2023 15:58:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bootlin.com; s=gm1; t=1689177525; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=+1Zhaf288c6QgZc0cVQIG/zrggMJajpMOeOYvAdfLSs=; b=LHBnv7EoIEQqNpbXaWGGJm61J1W/U840LsDsteL3KiaM7v6/HH3Ow4nzlXntEOWUPvMicw DsgR33JyIlfh5z9LDKunk0dP9O/zximA/8B99hQ8mBjpso3iL64R4DU2GBnbM5SwA5gq7X C17ApIcYqsc1HofddyEiw44mT3tba9UFtwC80jRUsnKDUscnDVsOcEmYmLf5iKXf97nGH/ eR9PC//du22kMhBXweLn3GS/pIYGKGWHzLgVTaCcW+T4FEEkRI/QmHodQiqfnhF27orrMh lm0+CckLvqLMbspIx3qKYRArOTdKHjzPwlMu6haVUtwjMsSkLYTFNcakkc94SA== Date: Wed, 12 Jul 2023 17:58:42 +0200 From: Miquel Raynal To: David Airlie , Daniel Vetter , dri-devel@lists.freedesktop.org, Thierry Reding , Mikko Perttunen Cc: Rob Herring , devicetree@vger.kernel.org, Frank Rowand , linux-tegra@vger.kernel.org, Thomas Petazzoni Subject: Re: [PATCH v3 0/2] Small of/device cleanup Message-ID: <20230712175842.12ee7e8c@xps-13> In-Reply-To: <20230622213214.3586530-1-miquel.raynal@bootlin.com> References: <20230622213214.3586530-1-miquel.raynal@bootlin.com> Organization: Bootlin X-Mailer: Claws Mail 4.0.0 (GTK+ 3.24.33; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-GND-Sasl: miquel.raynal@bootlin.com Precedence: bulk List-ID: X-Mailing-List: linux-tegra@vger.kernel.org Hello, miquel.raynal@bootlin.com wrote on Thu, 22 Jun 2023 23:32:12 +0200: > My previous attempt to slightly clean the OF core wrt device structures > was rather unsuccessful as the idea behind the discussed cleanup was > more impacting than what I thought, leading to most of the previous > series to be dropped. However, aside, two patches seemed actually > relevant, so here they are, alone. >=20 > Link: https://lore.kernel.org/all/20230608184903.GA3200973-robh@kernel.or= g/ I expect this small series to go through the drm tree, but as I actually sent it right before the beginning of the merge window and because I am not an experienced drm contributor, I would like to know if I am required to resend the patches or if they are fine as-is (I don't expect any conflicts with v6.5-rc1). Just let me know if a re-send is expected. Cheers, Miqu=C3=A8l >=20 > Thanks, > Miqu=C3=A8l >=20 > Changes in v3: > * Fixed the dev->parent referencing in the host1x driver. > * Collected Rob's Acked-by. >=20 > Changes in v2: > * Dropped all the of_device.h/of_module.h changes > * Directly used of_device_uevent() from the host1x driver >=20 >=20 > Miquel Raynal (2): > of: module: Export of_device_uevent() > gpu: host1x: Stop open-coding of_device_uevent() >=20 > drivers/gpu/host1x/bus.c | 29 ++++++----------------------- > drivers/of/device.c | 1 + > 2 files changed, 7 insertions(+), 23 deletions(-) >=20