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 BCE3A2727EC; Tue, 15 Jul 2025 20:30:00 +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=1752611400; cv=none; b=qAPN8/h9e7rejnAZjwPDavGdEbkRLmws1bUeK+FFn9sTvevLWwzrFmzJScLxqQ9rbNXuN2NROZ5xtlWdD/yC0Jff3klNwzrL1zf5KdTSCx708Jw5BJZG9uDs1kyDh/fa4p2OHjASJlArCa6FFeS3o4bdNf7300qXlvjV6WNA4Oo= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1752611400; c=relaxed/simple; bh=s1AZC3mbmHb2undumjXjWb3GFUaGZlxyaMwiYR1evAo=; h=Mime-Version:Content-Type:Date:Message-Id:From:Subject:Cc:To: References:In-Reply-To; b=O3MxynR1sQRLAt57XtSGOvyQW8lO/IqR1DO0G33HpBQlKLc2yOhv8N56gX3ntPpE0ZLWDOXXamqGLozwZOROn6I7QweQEVxFlY3+uAAqWFighbaVWPoxL5LaxelG0pB83qDBANrBOiMUzDCSqbfPmWSV4Q55WVjcT/FYfdn1yKI= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=e+VCbrIm; 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="e+VCbrIm" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 3C9E4C4CEE3; Tue, 15 Jul 2025 20:29:51 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1752611400; bh=s1AZC3mbmHb2undumjXjWb3GFUaGZlxyaMwiYR1evAo=; h=Date:From:Subject:Cc:To:References:In-Reply-To:From; b=e+VCbrIm8yAUY2nPpU0XmHKeewyFoIxrPMpkoi39p2KmvqZbyOmYKgD3ul4LKoqKF nBBH27Sjc8um1CWrjVbwGYfmWRuxeRmuY0mmyapVCD2yjVDPSK9V1xSMosc5jjNPUB 88n3tzuRafkUqc0eiX2j/9ZF1fNv5iaLe7E6mO98TVp0POc+sDz7aqrcgvyFr6LviF 3m8CXPtJsWrOHdIA0TVM3USnXL2jYIfzqg3Z3hW6mY7qaeaQhjcurXxhnpSNrKgiSX 7XQgDx8ElW2VhS5MLqc9t12hTuzNbCHaFBlLNg6S6kDs2Ljimm5id7E33IXo8yohDx YZyHaqdNBrWKg== Precedence: bulk X-Mailing-List: rust-for-linux@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: Mime-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=UTF-8 Date: Tue, 15 Jul 2025 22:29:48 +0200 Message-Id: From: "Danilo Krummrich" Subject: Re: [PATCH 1/2] rust: devres: provide an accessor for the device Cc: , To: , , , , , , , , , , , , References: <20250713182737.64448-1-dakr@kernel.org> In-Reply-To: <20250713182737.64448-1-dakr@kernel.org> On Sun Jul 13, 2025 at 8:26 PM CEST, Danilo Krummrich wrote: > Provide an accessor for the Device a Devres instance has been created > with. > > For instance, this is useful when registrations want to provide a > &Device for a scope that is protected by Devres. > > Suggested-by: Benno Lossin > Signed-off-by: Danilo Krummrich Applied to driver-core-testing, thanks!