diff options
author | Helge Deller <deller@gmx.de> | 2018-01-02 20:40:21 +0100 |
---|---|---|
committer | Helge Deller <deller@gmx.de> | 2018-01-02 21:00:57 +0100 |
commit | 0ae60d0c4f191c4241377cc3fc5931dc90ca3bbd (patch) | |
tree | 64ed8ec1b0f9cfccaa4d5bb5f41cea70dc77e35b /arch/parisc | |
parent | 30a7acd573899fd8b8ac39236eff6468b195ac7d (diff) | |
download | linux-0ae60d0c4f191c4241377cc3fc5931dc90ca3bbd.tar.bz2 |
parisc: Show unhashed hardware inventory
Fixes: ad67b74d2469d9b8 ("printk: hash addresses printed with %p")
Signed-off-by: Helge Deller <deller@gmx.de>
Diffstat (limited to 'arch/parisc')
-rw-r--r-- | arch/parisc/kernel/drivers.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/parisc/kernel/drivers.c b/arch/parisc/kernel/drivers.c index d8f77358e2ba..29b99b8964aa 100644 --- a/arch/parisc/kernel/drivers.c +++ b/arch/parisc/kernel/drivers.c @@ -870,7 +870,7 @@ static void print_parisc_device(struct parisc_device *dev) static int count; print_pa_hwpath(dev, hw_path); - printk(KERN_INFO "%d. %s at 0x%p [%s] { %d, 0x%x, 0x%.3x, 0x%.5x }", + printk(KERN_INFO "%d. %s at 0x%px [%s] { %d, 0x%x, 0x%.3x, 0x%.5x }", ++count, dev->name, (void*) dev->hpa.start, hw_path, dev->id.hw_type, dev->id.hversion_rev, dev->id.hversion, dev->id.sversion); |