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.

powerpc/ipic: Stop printing address of registers

The following line appears at boot:

IPIC (128 IRQ sources) at (ptrval)

This is pointless so remove the printing of the virtual address and
replace it by matching physical address.

Signed-off-by: Christophe Leroy <christophe.leroy@csgroup.eu>
Signed-off-by: Madhavan Srinivasan <maddy@linux.ibm.com>
Link: https://patch.msgid.link/ecffb21d88405f99e7ffc906a733396c57c36d50.1736405302.git.christophe.leroy@csgroup.eu

authored by

Christophe Leroy and committed by
Madhavan Srinivasan
67d93915 2bf3caa7

+1 -2
+1 -2
arch/powerpc/sysdev/ipic.c
··· 762 762 ipic_write(ipic->regs, IPIC_SIMSR_H, 0); 763 763 ipic_write(ipic->regs, IPIC_SIMSR_L, 0); 764 764 765 - printk ("IPIC (%d IRQ sources) at %p\n", NR_IPIC_INTS, 766 - primary_ipic->regs); 765 + pr_info("IPIC (%d IRQ sources) at MMIO %pa\n", NR_IPIC_INTS, &res.start); 767 766 768 767 return ipic; 769 768 }