Skip to content

Commit a7a080b

Browse files
devnexenGnurou
authored andcommitted
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: 5949d41 ("gpu: nova-core: gsp: Boot GSP") Signed-off-by: David Carlier <[email protected]> Link: https://patch.msgid.link/[email protected] Signed-off-by: Alexandre Courbot <[email protected]>
1 parent 6b9a10d commit a7a080b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/gpu/nova-core/gsp/boot.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ impl super::Gsp {
195195
Some(wpr_handle as u32),
196196
Some((wpr_handle >> 32) as u32),
197197
)?;
198-
dev_dbg!(pdev, "SEC2 MBOX0: {:#x}, MBOX1{:#x}\n", mbox0, mbox1);
198+
dev_dbg!(pdev, "SEC2 MBOX0: {:#x}, MBOX1: {:#x}\n", mbox0, mbox1);
199199

200200
if mbox0 != 0 {
201201
dev_err!(pdev, "Booter-load failed with error {:#x}\n", mbox0);

0 commit comments

Comments
 (0)