Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 78514517 authored by Helge Deller's avatar Helge Deller
Browse files

parisc: Fix serio address output



We want the hpa addresses printed in the serio modules, not some
virtual ioremap()ed address, e.g.:

 serio: gsc-ps2-keyboard port at 0xf0108000 irq 22 @ 2:0:11
 serio: gsc-ps2-mouse port at 0xf0108100 irq 22 @ 2:0:12

Signed-off-by: default avatarHelge Deller <deller@gmx.de>
parent 8cc28269
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -381,9 +381,9 @@ static int __init gscps2_probe(struct parisc_device *dev)
		goto fail;
#endif

	printk(KERN_INFO "serio: %s port at 0x%p irq %d @ %s\n",
	pr_info("serio: %s port at 0x%08lx irq %d @ %s\n",
		ps2port->port->name,
		ps2port->addr,
		hpa,
		ps2port->padev->irq,
		ps2port->port->phys);