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 7249C1C3F0C; Fri, 1 Aug 2025 09:52:52 +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=1754041972; cv=none; b=RCHthcvpHGP98kM1aO6349nJ5I9FXbFGyPaUmJvA+ZruXVx9PPLKYCabp/S8oJ9kGPCUJkfGUD7BSrYfoXIv3WQpzW/CDJh3+CYpM4m8+3xbFa1IVccTXPesQPkCsXlYzUtfu2fEBr33MQjmDPGww0DPo1xvP/Ts6laPNGKX7Ww= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1754041972; c=relaxed/simple; bh=XWVfJARE29L6S8L6M85DEoeDJhaQJ3KW7VCi1swPty4=; h=Mime-Version:Content-Type:Date:Message-Id:From:To:Cc:Subject: References:In-Reply-To; b=UP/juy8slUGeiaM4Wpk5NNlXLqjKxxbuYitBKaKGsmd+c2exIl6yxFjXxeNR5Unv5W1J/iNW1WKGI4TW2mKXgWcwmw4TZplyVE4YXg5hc453n4ck0EVbLNs30tfQjQqRuAepbkw2SA3PPGiylzjktSebWqFzHSSs8K0ml2sNyfc= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=r4Mxx2yk; 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="r4Mxx2yk" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 253ECC4CEE7; Fri, 1 Aug 2025 09:52:47 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1754041971; bh=XWVfJARE29L6S8L6M85DEoeDJhaQJ3KW7VCi1swPty4=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=r4Mxx2ykiiEkKOFURdp0PlixlkEvQxTrQgVUXrvhUEVPRzDMUMaU9F9sycyJ8zQQt yOfMbkqws/fTDUC/1EY+A/NrHiE4BYTa5c9PW931U2kisyu2oV/6fF3pulWVjX6sh9 dWCBneHfldpyTP7gAEbbFOgiTYVOvnieelMPZfx5pO5qdbzpCTwIXrZoHRyWSdpQZ4 xY7qoOHZKL5jWShRgvq8pZGgNrpfhuGa1E7W2w46Bme4lgRJ9KmHkbn4V7zGCg7v1J mduy6bptGG9AQy+oCOesoWIXx8Yo85pEU8zZizvX84lz+Ph1OpfNWTBG1paOiepcBl IrOIvdDU0JPXQ== 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: Fri, 01 Aug 2025 11:52:46 +0200 Message-Id: From: "Benno Lossin" To: "Danilo Krummrich" , , , , , , , , , , , , , , , , , Cc: , , Subject: Re: [PATCH 3/4] rust: drm: remove pin annotations from drm::Device X-Mailer: aerc 0.20.1 References: <20250731154919.4132-1-dakr@kernel.org> <20250731154919.4132-4-dakr@kernel.org> In-Reply-To: <20250731154919.4132-4-dakr@kernel.org> On Thu Jul 31, 2025 at 5:48 PM CEST, Danilo Krummrich wrote: > The #[pin_data] and #[pin] annotations are not necessary for > drm::Device, since we don't use any pin-init macros, but only > __pinned_init() on the impl PinInit argument of > drm::Device::new(). > > Fixes: 1e4b8896c0f3 ("rust: drm: add device abstraction") > Signed-off-by: Danilo Krummrich Reviewed-by: Benno Lossin --- Cheers, Benno > --- > rust/kernel/drm/device.rs | 2 -- > 1 file changed, 2 deletions(-)