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

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: Helge Deller <deller@gmx.de>

+2 -2
+2 -2
drivers/input/serio/gscps2.c
··· 381 381 goto fail; 382 382 #endif 383 383 384 - printk(KERN_INFO "serio: %s port at 0x%p irq %d @ %s\n", 384 + pr_info("serio: %s port at 0x%08lx irq %d @ %s\n", 385 385 ps2port->port->name, 386 - ps2port->addr, 386 + hpa, 387 387 ps2port->padev->irq, 388 388 ps2port->port->phys); 389 389