diff options
| author | David Carlier <devnexen@gmail.com> | 2026-03-31 11:37:44 +0100 |
|---|---|---|
| committer | Alexandre Courbot <acourbot@nvidia.com> | 2026-04-06 10:06:39 +0900 |
| commit | a7a080bb4236ebe577b6776d940d1717912ff6dd (patch) | |
| tree | b12855fd0c9ebdf413a3536b88a18d84c1c8cf5b | |
| parent | 6b9a10d6f0a131a8ea6beae559a31084840b063d (diff) | |
gpu: nova-core: fix missing colon in SEC2 boot debug message
The SEC2 mailbox debug output formats MBOX1 without a colon separator,
producing "MBOX10xdead" instead of "MBOX1: 0xdead". The GSP debug
message a few lines above uses the correct format.
Fixes: 5949d419c193 ("gpu: nova-core: gsp: Boot GSP")
Signed-off-by: David Carlier <devnexen@gmail.com>
Link: https://patch.msgid.link/20260331103744.605683-1-devnexen@gmail.com
Signed-off-by: Alexandre Courbot <acourbot@nvidia.com>
| -rw-r--r-- | drivers/gpu/nova-core/gsp/boot.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/nova-core/gsp/boot.rs b/drivers/gpu/nova-core/gsp/boot.rs index 6f707b3d1a54..18f356c9178e 100644 --- a/drivers/gpu/nova-core/gsp/boot.rs +++ b/drivers/gpu/nova-core/gsp/boot.rs @@ -195,7 +195,7 @@ impl super::Gsp { Some(wpr_handle as u32), Some((wpr_handle >> 32) as u32), )?; - dev_dbg!(pdev, "SEC2 MBOX0: {:#x}, MBOX1{:#x}\n", mbox0, mbox1); + dev_dbg!(pdev, "SEC2 MBOX0: {:#x}, MBOX1: {:#x}\n", mbox0, mbox1); if mbox0 != 0 { dev_err!(pdev, "Booter-load failed with error {:#x}\n", mbox0); |
