diff options
| author | Alexandre Courbot <acourbot@nvidia.com> | 2025-07-18 16:26:07 +0900 |
|---|---|---|
| committer | Alexandre Courbot <acourbot@nvidia.com> | 2025-08-15 11:32:23 +0900 |
| commit | be3536a4bdda53ff5a91b7e542b167d12bddb317 (patch) | |
| tree | 0d9d5ea8db78c0731295e414eb712875cc746de7 /drivers/gpu/nova-core | |
| parent | gpu: nova-core: register: minor grammar and spelling fixes (diff) | |
| download | linux-be3536a4bdda53ff5a91b7e542b167d12bddb317.tar.gz linux-be3536a4bdda53ff5a91b7e542b167d12bddb317.zip | |
gpu: nova-core: register: add missing space in register!()
A space was missing between arguments in this invocation.
[acourbot@nvidia.com: use more descriptive commit title]
Reviewed-by: Daniel Almeida <daniel.almeida@collabora.com>
Reviewed-by: Boqun Feng <boqun.feng@gmail.com>
Reviewed-by: Lyude Paul <lyude@redhat.com>
Link:
https://lore.kernel.org/r/20250718-nova-regs-v2-2-7b6a762aa1cd@nvidia.com
Signed-off-by: Alexandre Courbot <acourbot@nvidia.com>
Diffstat (limited to 'drivers/gpu/nova-core')
| -rw-r--r-- | drivers/gpu/nova-core/regs/macros.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/nova-core/regs/macros.rs b/drivers/gpu/nova-core/regs/macros.rs index 6d4080a65ee4..9cc612f41f12 100644 --- a/drivers/gpu/nova-core/regs/macros.rs +++ b/drivers/gpu/nova-core/regs/macros.rs @@ -116,7 +116,7 @@ macro_rules! register { ) => { register!(@common $name @ $offset $(, $comment)?); register!(@field_accessors $name { $($fields)* }); - register!(@io$name @ + $offset); + register!(@io $name @ + $offset); }; // Creates a alias register of relative offset register `alias` with its own fields. |
