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 gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 71CDCC8303D for ; Sat, 5 Jul 2025 08:04:37 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id D00C010E0C1; Sat, 5 Jul 2025 08:04:36 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="UyGAt+uj"; dkim-atps=neutral Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by gabe.freedesktop.org (Postfix) with ESMTPS id F410A10E0C1; Sat, 5 Jul 2025 08:04:35 +0000 (UTC) Received: from smtp.kernel.org (transwarp.subspace.kernel.org [100.75.92.58]) by dfw.source.kernel.org (Postfix) with ESMTP id ABD6F5C484C; Sat, 5 Jul 2025 08:04:34 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id A5A94C4CEE7; Sat, 5 Jul 2025 08:04:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1751702674; bh=gno/0LEj5ipEWscOXuFUP5p23Zzxa+r2Bh8Hv/hJ5GQ=; h=Date:Subject:From:To:Cc:References:In-Reply-To:From; b=UyGAt+ujqFDZpp0LdmolpxWu5svih6F5sD6IBytgX99q2v7Y0ipuz2k3Sr8Doxaw4 +PfDTDaltJq8WKa0xmXkchGcMTia5mOVKOp9PS7q0qKexSZXm0jTUHt/ws2Kcd9kNA NR0DMVoP7SrS312+w548r4N4Q/RNP4mZEKQ1oyEqNnThA10JzLG0oVe3WC55nfD27h 3OHamxalhB7m+kAipSlJwkr2KTyO65HaHtWEF9vIS4QbtzL39sIJcIK+hPFN6jgyo4 FHv3MIA4Vbo3fb/OSQpxxjyKYDQvSbPYTqhUZcUkYU/fxJnCz42RNtxSny5Jy/6ptN E4q4OovmoPf8w== Mime-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=UTF-8 Date: Sat, 05 Jul 2025 10:04:28 +0200 Message-Id: Subject: Re: [PATCH 4/6] rust: str: remove unnecessary qualification From: "Benno Lossin" To: "Tamir Duberstein" , "Rafael J. Wysocki" , "Viresh Kumar" , "Danilo Krummrich" , "David Airlie" , "Simona Vetter" , "Nishanth Menon" , "Stephen Boyd" , "Miguel Ojeda" , "Alex Gaynor" , "Boqun Feng" , "Gary Guo" , =?utf-8?q?Bj=C3=B6rn_Roy_Baron?= , "Andreas Hindborg" , "Alice Ryhl" , "Trevor Gross" Cc: , , , , X-Mailer: aerc 0.20.1 References: <20250704-core-cstr-prepare-v1-0-a91524037783@gmail.com> <20250704-core-cstr-prepare-v1-4-a91524037783@gmail.com> In-Reply-To: <20250704-core-cstr-prepare-v1-4-a91524037783@gmail.com> X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" On Fri Jul 4, 2025 at 10:14 PM CEST, Tamir Duberstein wrote: > `core::ffi::*` is in the prelude, which is imported here. > > Signed-off-by: Tamir Duberstein Reviewed-by: Benno Lossin --- Cheers, Benno > --- > rust/kernel/str.rs | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-)