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 A48A1137932; Mon, 15 Jul 2024 19:25:30 +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=1721071530; cv=none; b=CRgZQ0TcmaFwqH704iwBvBPzPIcL76TTIIvl1PL3iYZptctyCLMiKkZdmm6CHp4ylnvCP3996N1ufMevtz/1Ue/wYRYxZrdT2iWhJeJX0BCX2cJ/fCmq3pBmwHDn9EEE9OKhmTOm9a8oLMCcvs/Tk8OlIXdbZ0ww97X93vtBy6I= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1721071530; c=relaxed/simple; bh=HCQwXA0zL4VlzEp1LLWrMug/gNBh+smW3peehKVM3dQ=; h=Message-ID:Content-Type:MIME-Version:In-Reply-To:References: Subject:From:Cc:To:Date; b=cqU4goHteU2VI8BwcHChELwYkhrEj20C7u4zKfFBc8DA7JQ0qMtMUzjLaiHe/mOJj7tVG9pIa0Ol/75v8H8lxQf3u1Ttlo1idVEBvUzdRxxRPHImsHokVdCEINiJ4+bNorwEHFvaThFdML/1RcokpHURKRUwFIp7AuWZGR7iVl8= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=cGFc8jdp; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="cGFc8jdp" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 2B254C4AF0A; Mon, 15 Jul 2024 19:25:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1721071530; bh=HCQwXA0zL4VlzEp1LLWrMug/gNBh+smW3peehKVM3dQ=; h=In-Reply-To:References:Subject:From:Cc:To:Date:From; b=cGFc8jdpGlzakskBmtnH2RFIAG691BICns+ZyaLpfMjVd0YsAdEkDS+4XpKtHBJhO /GTFqfe/eZzvaxYSQyb5J/gTD0gDWKnWLFNLVE5o5yXQGcZ+kFYfnA1JJuC+n5kx3a qMMwbkBzacATOjMc+pzKs6Ab11siLU1esB66TfCX4/qUk2RonbmmHFpNjq7El5Nfv7 vTCUM0u5M6VuYD9SNFBXdfskwencFbB1JNgDla6taY6gbgZ1CefgNQHEGtlHGF59Ll bzqFatAphataWYuT2DWiwcx32jit4RpAAVmvXWJlNwNiuS8Gty2zW5nqjVYE7YfWig SKtSYM7cYYGgg== Message-ID: <083427fef0169b312530bbee22d2ba9b.sboyd@kernel.org> Content-Type: text/plain; charset="utf-8" Precedence: bulk X-Mailing-List: devicetree@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable In-Reply-To: <20240710201246.1802189-7-sboyd@kernel.org> References: <20240710201246.1802189-1-sboyd@kernel.org> <20240710201246.1802189-7-sboyd@kernel.org> Subject: Re: [PATCH v7 6/8] clk: Add test managed clk provider/consumer APIs From: Stephen Boyd Cc: linux-kernel@vger.kernel.org, linux-clk@vger.kernel.org, patches@lists.linux.dev, kunit-dev@googlegroups.com, linux-kselftest@vger.kernel.org, devicetree@vger.kernel.org, Brendan Higgins , David Gow , Rae Moar , Greg Kroah-Hartman , Rafael J . Wysocki , Rob Herring , Saravana Kannan , Daniel Latypov , Christian Marangi , Krzysztof Kozlowski , Conor Dooley , Maxime Ripard To: Michael Turquette , Stephen Boyd Date: Mon, 15 Jul 2024 12:25:28 -0700 User-Agent: alot/0.10 Quoting Stephen Boyd (2024-07-10 13:12:42) > Unit tests are more ergonomic and simpler to understand if they don't > have to hoist a bunch of code into the test harness init and exit > functions. Add some test managed wrappers for the clk APIs so that clk > unit tests can write more code in the actual test and less code in the > harness. >=20 > Only add APIs that are used for now. More wrappers can be added in the > future as necessary. >=20 > Cc: Brendan Higgins > Cc: David Gow > Cc: Rae Moar > Signed-off-by: Stephen Boyd > --- Applied to clk-next