From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-170.mta0.migadu.com (out-170.mta0.migadu.com [91.218.175.170]) (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 7EB23310784 for ; Mon, 8 Dec 2025 11:25:00 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.170 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1765193102; cv=none; b=euUO72dSq4EcR9hLaUIPWoxIv8DoKJx4zFdVpBcVXRI3YQE8GIMuS13pKUkQsDIBIXkMHhgZg6N3NKhxSbq3TlrAM5dJnapbmzlneahP/Wc7NipQVi3kzOMneUKTfzNcbUJLQ8JAL2m0YhJIDA2Md/Gp8IizPx+kQUBaLx96TgU= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1765193102; c=relaxed/simple; bh=zvFAsaPJHtD6lOg1csRdM/ZY6adE/W3QTSkhbJI4Ji0=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type; b=gVrbBoQpcfWzdkcIlIBP0d5jzUIOzlT6qmxO5UOm9RVKik3n4Ab0CIcJKGSSIkCol+7nH81JU/pEvORB5JzEft/pU/GRoVGQ0j49tX4oAcQhk4MhRs8RRvvwgcCfd4niozrxFuPqmXKVSB2Xn1Strx+E6+Hm4r7JhOwLNiz+FG0= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev; spf=pass smtp.mailfrom=linux.dev; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b=K+3Q+f4w; arc=none smtp.client-ip=91.218.175.170 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.dev Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="K+3Q+f4w" Message-ID: DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1765193098; 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=7xNh2IrUQfFXer4apy1LW0wPRCYKX8Op57bOTtZRB8k=; b=K+3Q+f4wXwHAnSqWeD8Zht4KMjLopVIgM4PK7rSR+Hinpl7RTbJvRrBBabkCUQhDD5x4/Z 4pxwRlrEFBvcM1zNBGsUvfNVpd7O/Mm7AzAfbDuNH34KRj5DegQWb91SVsBmiqKd8im331 NeOxbkTG/SqtW2oGCbu4kfXm6n1R7Mo= Date: Mon, 8 Dec 2025 11:24:51 +0000 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Subject: Re: [PATCH 3/4] drm/atomic-helper: Export and namespace some functions To: Tomi Valkeinen , Maarten Lankhorst , Maxime Ripard , Thomas Zimmermann , David Airlie , Simona Vetter , Andrzej Hajda , Neil Armstrong , Robert Foss , Laurent Pinchart , Jonas Karlman , Jernej Skrabec , Dmitry Baryshkov , Chun-Kuang Hu , Philipp Zabel , Matthias Brugger , AngeloGioacchino Del Regno , Jyri Sarha Cc: dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org, linux-mediatek@lists.infradead.org, linux-arm-kernel@lists.infradead.org, Marek Szyprowski , Louis-Alexis Eyraud , Linus Walleij , Chaoyi Chen , Vicente Bergas , Marek Vasut , stable@vger.kernel.org References: <20251205-drm-seq-fix-v1-0-fda68fa1b3de@ideasonboard.com> <20251205-drm-seq-fix-v1-3-fda68fa1b3de@ideasonboard.com> Content-Language: en-US X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Aradhya Bhatia In-Reply-To: <20251205-drm-seq-fix-v1-3-fda68fa1b3de@ideasonboard.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Migadu-Flow: FLOW_OUT On 05/12/2025 09:51, Tomi Valkeinen wrote: > From: Linus Walleij > > Export and namespace those not prefixed with drm_* so > it becomes possible to write custom commit tail functions > in individual drivers using the helper infrastructure. > > Tested-by: Marek Vasut > Reviewed-by: Maxime Ripard > Signed-off-by: Linus Walleij > [Tomi: Resolved conflicts, fixed indentation] > Signed-off-by: Tomi Valkeinen > Cc: stable@vger.kernel.org # v6.17+ > --- > drivers/gpu/drm/drm_atomic_helper.c | 122 +++++++++++++++++++++++++++++------- > include/drm/drm_atomic_helper.h | 22 +++++++ > 2 files changed, 121 insertions(+), 23 deletions(-) > Reviewed-by: Aradhya Bhatia