Skip to content

Commit 4a1361e

Browse files
jones-drewKAGA-KOKO
authored andcommitted
irqchip/riscv-imsic: Fix output text of base address
The "per-CPU IDs ... at base ..." info log is outputting a physical address, not a PPN. Fixes: 027e125 ("irqchip/riscv-imsic: Add device MSI domain support for platform devices") Signed-off-by: Andrew Jones <[email protected]> Signed-off-by: Thomas Gleixner <[email protected]> Reviewed-by: Anup Patel <[email protected]> Link: https://lore.kernel.org/all/[email protected]
1 parent 7f1f78b commit 4a1361e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/irqchip/irq-riscv-imsic-platform.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ int imsic_irqdomain_init(void)
341341
imsic->fwnode, global->hart_index_bits, global->guest_index_bits);
342342
pr_info("%pfwP: group-index-bits: %d, group-index-shift: %d\n",
343343
imsic->fwnode, global->group_index_bits, global->group_index_shift);
344-
pr_info("%pfwP: per-CPU IDs %d at base PPN %pa\n",
344+
pr_info("%pfwP: per-CPU IDs %d at base address %pa\n",
345345
imsic->fwnode, global->nr_ids, &global->base_addr);
346346
pr_info("%pfwP: total %d interrupts available\n",
347347
imsic->fwnode, num_possible_cpus() * (global->nr_ids - 1));

0 commit comments

Comments
 (0)