From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (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 0759E3FBB79; Tue, 2 Jun 2026 17:29:55 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1780421396; cv=none; b=cdL+LQ9cVolJmkjkJ7MoXlYUZShbWPtwqsUxAoh4HIOKuYr6Twkmdkjl4Ib9lzMwrsnJvhoxqKT6ABSYqajPLSPkeDRznAYIj9C5fMiwe0wGFemRd1wc1rzTCpqib6GQkY/dI6YwbbUQQHsnq3/ient4XONOqTycLkRtrgT3Vdo= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1780421396; c=relaxed/simple; bh=Xy0xOTtc+1RX8y9mj8nFOgnfzNokpWGgTIbU2b9Lmtc=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=g3fGy0uD+R3I/ggw2tRVbRJsS/yXwq3UaLunV5I73iZwMRbihAAMBUr3S+or/9uAT9FALAe0nwvkZET2fTDihySzF2Au6fzon10F/Ow81rrt24cRVkxokVlYgwE9CzsostHup6TlfTBvx3d6ujcSdhsNl4F792Kp59NMHo8HNkw= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=Rx9moAvC; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="Rx9moAvC" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 5A6821F00898; Tue, 2 Jun 2026 17:29:52 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1780421395; bh=dR7Y70JCFc/8Bb+Uo9FH+FnemFVCaKGZvOzrfjzZnBw=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=Rx9moAvCgfrvlfcQOmfETGMv3xyg8M8giwvmepPhfp7nQD6KOCBaNs7yrfiAA6CNN bqo1nPMsqf4YxIVS6+lfHZZ5V3A85/6oNu3hoq5DvNR/K3oQ5RqzoSZuqsFC9HYH6V d6IS2kEj/dvwdQwHwEOQJgmBrwJe4vDD4YxEJmRtRxyhxNAM4eb5X5jDGJHiEMBwfe rPxClFHPSmQKSSLuVDKj4Cv1ieCW7wUei2h3R25km2W6MQbHaq3jPizb+5sei1y88q Jl+yc6mRqFdicvezVk6RxdBmO+niBLEZ/7CMq1PsWw89sS9IBUr2x3YV53szb3V8ft Y1pT1suiHcsog== From: Miguel Ojeda To: Miguel Ojeda , Nathan Chancellor , Nicolas Schier Cc: Boqun Feng , Gary Guo , =?UTF-8?q?Bj=C3=B6rn=20Roy=20Baron?= , Benno Lossin , Andreas Hindborg , Alice Ryhl , Trevor Gross , Danilo Krummrich , rust-for-linux@vger.kernel.org, linux-kbuild@vger.kernel.org, Joshua Liebow-Feeser , Jack Wrenn Subject: [PATCH 03/18] rust: kbuild: remove unused variable Date: Tue, 2 Jun 2026 19:29:04 +0200 Message-ID: <20260602172920.30342-4-ojeda@kernel.org> In-Reply-To: <20260602172920.30342-1-ojeda@kernel.org> References: <20260602172920.30342-1-ojeda@kernel.org> Precedence: bulk X-Mailing-List: rust-for-linux@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Since we are adding one more proc macro crate (`zerocopy-derive`), we are refactoring their handling. `libpin_init_internal_extension` was added to mimic the setup for `macros`, but it is not used, since the extension is expected to be the same. Thus remove it. Signed-off-by: Miguel Ojeda --- rust/Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/rust/Makefile b/rust/Makefile index bec9726f256c..2b4a3983bb1e 100644 --- a/rust/Makefile +++ b/rust/Makefile @@ -51,7 +51,6 @@ libmacros_name := $(shell MAKEFLAGS= $(RUSTC) --print file-names --crate-name ma libmacros_extension := $(patsubst libmacros.%,%,$(libmacros_name)) libpin_init_internal_name := $(shell MAKEFLAGS= $(RUSTC) --print file-names --crate-name pin_init_internal --crate-type proc-macro -