mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-08-31 03:35:32 -04:00
rust: io: register: use path fragment for alias destination
The destination of an alias is always another register, i.e. a `struct` type. Replace the `ident` fragment with a `path` one in the internal rules: `path` is more accurate, and allows referencing registers using a qualified path instead of only identifiers visible from the current module. This covers all aliases, except the relative register ones which are to be removed soon. The public rule cannot be updated yet because a `+` can still be matched after the alias; add a TODO item to update it after relative registers are removed. Signed-off-by: Alexandre Courbot <acourbot@nvidia.com> Link: https://patch.msgid.link/20260724-registers_fix-v2-3-a0fb58b02185@nvidia.com Signed-off-by: Danilo Krummrich <dakr@kernel.org>
This commit is contained in:
committed by
Danilo Krummrich
parent
78e9b43892
commit
2230d38828
@@ -804,6 +804,9 @@ macro_rules! register {
|
||||
// Entry point for the macro, allowing multiple registers to be defined in one call.
|
||||
// It matches all possible register declaration patterns to dispatch them to corresponding
|
||||
// `@reg` rule that defines a single register.
|
||||
//
|
||||
// TODO: change `alias:ident` to `alias:path` once relative registers are replaced by I/O
|
||||
// projections.
|
||||
(
|
||||
$(
|
||||
$(#[$attr:meta])* $vis:vis $name:ident ($storage:ty)
|
||||
@@ -837,7 +840,7 @@ macro_rules! register {
|
||||
|
||||
// Creates an alias register of fixed offset register `alias` with its own fields.
|
||||
(
|
||||
@reg $(#[$attr:meta])* $vis:vis $name:ident ($storage:ty) => $alias:ident
|
||||
@reg $(#[$attr:meta])* $vis:vis $name:ident ($storage:ty) => $alias:path
|
||||
{ $($fields:tt)* }
|
||||
) => {
|
||||
$crate::register!(@bitfield $(#[$attr])* $vis struct $name($storage) { $($fields)* });
|
||||
@@ -896,7 +899,7 @@ macro_rules! register {
|
||||
|
||||
// Creates an alias of register `idx` of array of registers `alias` with its own fields.
|
||||
(
|
||||
@reg $(#[$attr:meta])* $vis:vis $name:ident ($storage:ty) => $alias:ident [ $idx:expr ]
|
||||
@reg $(#[$attr:meta])* $vis:vis $name:ident ($storage:ty) => $alias:path [ $idx:expr ]
|
||||
{ $($fields:tt)* }
|
||||
) => {
|
||||
$crate::build_assert::static_assert!(
|
||||
|
||||
Reference in New Issue
Block a user