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 3A332286D47; Tue, 10 Jun 2025 08:56:08 +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=1749545769; cv=none; b=BsFTVCfdrl7zCvDb259rVoe4qnInQXUkc5HCvmYbUK6T3tlLs9iU82MhklSOG+UCWq1JVCi5hJ2WvL1aUTgy/O67KkawpICsEZp6VzD013WH4NmwerN79DvQM9YAL1nb2QKjZW7Ia8TQ34HwspYeyg0Zi3j7mKKfeo2dSWZZzpU= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1749545769; c=relaxed/simple; bh=FDylNM5QiKDVslap+v69luYbNSSeUxYW7i/sVB1GflI=; h=Mime-Version:Content-Type:Date:Message-Id:Cc:Subject:From:To: References:In-Reply-To; b=D3HEj3ijHCPPDWog6pksKusKIx4huVNE5R+VM/VuNku5INJVOYzzvLoK/OC+cLrIXz1qJKlFGWuWodImWtGFcKCgunk2CLJLhvT7KeKkL/aFL88KiK+nHlDcn6JOibObEF04Wxf/zj6WId911Upr7AFgpSCDWjKfIGkT+oxUwsQ= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=MpwKaJms; 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="MpwKaJms" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 907D6C4CEED; Tue, 10 Jun 2025 08:56:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1749545768; bh=FDylNM5QiKDVslap+v69luYbNSSeUxYW7i/sVB1GflI=; h=Date:Cc:Subject:From:To:References:In-Reply-To:From; b=MpwKaJmscN1m61JeMuiBSNXN04P15jq1shwdEt0PGS9cTHeGx6whJWd9idQvI5qF0 Y1HX7p8J8Yk9n8V3hxj9UwSRBQwRVTz4DIpRSqpaDlGRmZ2vEQ5BdnvDLiAXJkv1iD rL2lfRcKhaVmjG4DJyjH8ARKr7s5FD5OEBbmnakyhltz1OH09yj2yanzliL4BcQWLG dPpjlqKoyxWOzO48ba76ZkrJflVMutLfxa5W7mnViJu7ocCb2Y3Kl8z2yftNwENtMM VjAd73v8nyQsg9PlDv8pz/Az+2on8uxvxC+2/niv60Uos6Tp3bsdk8IlpeVY3JqJVn rXd5xQpKDqt3w== Precedence: bulk X-Mailing-List: linux-pm@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, 10 Jun 2025 10:56:00 +0200 Message-Id: Cc: , , , , Subject: Re: [PATCH] rust: module: remove deprecated author key From: "Benno Lossin" To: "Guilherme Giacomo Simoes" , , , , , , , , , , , , , , , , , , , , , , , , , , , , X-Mailer: aerc 0.20.1 References: <20250609122200.179307-1-trintaeoitogc@gmail.com> In-Reply-To: <20250609122200.179307-1-trintaeoitogc@gmail.com> On Mon Jun 9, 2025 at 2:22 PM CEST, Guilherme Giacomo Simoes wrote: > Commit 38559da6afb2 ("rust: module: introduce `authors` key") introduced > a new `authors` key to support multiple module authors, while keeping > the old `author` key for backward compatibility. > > Now that all in-tree modules have migrated to `authors`, remove: > 1. The deprecated `author` key support from the module macro > 2. Legacy `author` entries from remaining modules > > Signed-off-by: Guilherme Giacomo Simoes > --- > drivers/cpufreq/rcpufreq_dt.rs | 2 +- > drivers/gpu/drm/nova/nova.rs | 2 +- > drivers/gpu/nova-core/nova_core.rs | 2 +- > rust/kernel/firmware.rs | 2 +- > rust/macros/module.rs | 6 ------ > samples/rust/rust_configfs.rs | 2 +- > samples/rust/rust_driver_auxiliary.rs | 2 +- > 7 files changed, 6 insertions(+), 12 deletions(-) Reviewed-by: Benno Lossin --- Cheers, Benno