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 DFC15342CBB; Thu, 30 Oct 2025 11:12:07 +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=1761822728; cv=none; b=YcddRsR5VT+4Bhga1q2Xh+q6c5y+F05XceEBBh9C7qgh/oxH62sXBeKLJKKxxfffvJob7SeAZ94zbyz2kB0U+S103QU6gMaMtibeCIo2169L50ev4BYTkMl+sKevKCNsdIjYwz1jpoX414SqwrvRD3xSmZQwTDSCGtjEcxn+iZo= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1761822728; c=relaxed/simple; bh=BSolpokxLywxqliZROQ9KV5FG5CYIMSvfXRul5jIyB0=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type; b=CjeAQEgMwu9Lo10b6fWXzCrWABe5O9+LHm7Sn8qNkl01jTxc2EjnhjwAmW/Ii4fqNesZ5n7hIb8U3R67g70s51DpkZ9e1IsbaIcp6KceErRZlACfMUJrc6l86RFd+qw0WTddGaaEHHaXWQDwFv8S2BkaBKRtxD7P+LFJU8xBei4= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=cgum3bRr; 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="cgum3bRr" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 5BCE4C4CEF1; Thu, 30 Oct 2025 11:12:03 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1761822727; bh=BSolpokxLywxqliZROQ9KV5FG5CYIMSvfXRul5jIyB0=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=cgum3bRr+d2xng6DdIy3v1BDtvsKHbN9eWzQehMlNHRh5Hanx0alkIKGGFUgorLx5 CYu6xkABWusWSpXrVDHnnCwfHjdvdFg3dfA8FjF/1hXCi+genjkwvTKyn9N93nWS5L gykWg3frvVbxoHyEtjFjFkt83hYxTkSLK9KxwD+0bf6Vx8bc+HbVKkS3dhy937JLMs NeTKH4jKb3i4JmP/yZAfcwNpsWDIMeT/auysqszxvWV0KW9647BfEwXtMWIal6XG/7 1RNmyjsr3bW/W/pDd5s74yqz8onJxt2SfSPayoP0ijtWRpU4B2/kLKMcBcuOvlxsFQ 6jxtwBOysfXAw== Message-ID: <06e18028-db5c-4a4e-a96d-29ddc07485ff@kernel.org> Date: Thu, 30 Oct 2025 12:12:01 +0100 Precedence: bulk X-Mailing-List: rust-for-linux@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [PATCH 1/1] nova-core: regs: rename .alter() --> .update() To: John Hubbard Cc: Alexandre Courbot , Joel Fernandes , Timur Tabi , Alistair Popple , Edwin Peer , Zhi Wang , David Airlie , Simona Vetter , Bjorn Helgaas , Miguel Ojeda , Alex Gaynor , Boqun Feng , Gary Guo , =?UTF-8?Q?Bj=C3=B6rn_Roy_Baron?= , Benno Lossin , Andreas Hindborg , Alice Ryhl , Trevor Gross , nouveau@lists.freedesktop.org, rust-for-linux@vger.kernel.org, LKML References: <20251025010815.566909-1-jhubbard@nvidia.com> <20251025010815.566909-2-jhubbard@nvidia.com> From: Danilo Krummrich Content-Language: en-US In-Reply-To: <20251025010815.566909-2-jhubbard@nvidia.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit On 10/25/25 3:08 AM, John Hubbard wrote: > This also changes .try_alter() to try_update(). > > After this commit, instead of "read, write and alter", the methods > available for registers are now "read, write and update". > > This reads a lot easier for people who are used to working with > registers. > > No functional changes are intended. > > Signed-off-by: John Hubbard Acked-by: Danilo Krummrich