Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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>

authored by

David Carlier and committed by
Alexandre Courbot
a7a080bb 6b9a10d6

+1 -1
+1 -1
drivers/gpu/nova-core/gsp/boot.rs
··· 195 195 Some(wpr_handle as u32), 196 196 Some((wpr_handle >> 32) as u32), 197 197 )?; 198 - dev_dbg!(pdev, "SEC2 MBOX0: {:#x}, MBOX1{:#x}\n", mbox0, mbox1); 198 + dev_dbg!(pdev, "SEC2 MBOX0: {:#x}, MBOX1: {:#x}\n", mbox0, mbox1); 199 199 200 200 if mbox0 != 0 { 201 201 dev_err!(pdev, "Booter-load failed with error {:#x}\n", mbox0);