@@ -303,7 +303,7 @@ static void dino_mask_irq(struct irq_data *d)
303
303
struct dino_device * dino_dev = irq_data_get_irq_chip_data (d );
304
304
int local_irq = gsc_find_local_irq (d -> irq , dino_dev -> global_irq , DINO_LOCAL_IRQS );
305
305
306
- DBG (KERN_WARNING "%s(0x%p , %d)\n" , __func__ , dino_dev , d -> irq );
306
+ DBG (KERN_WARNING "%s(0x%px , %d)\n" , __func__ , dino_dev , d -> irq );
307
307
308
308
/* Clear the matching bit in the IMR register */
309
309
dino_dev -> imr &= ~(DINO_MASK_IRQ (local_irq ));
@@ -316,7 +316,7 @@ static void dino_unmask_irq(struct irq_data *d)
316
316
int local_irq = gsc_find_local_irq (d -> irq , dino_dev -> global_irq , DINO_LOCAL_IRQS );
317
317
u32 tmp ;
318
318
319
- DBG (KERN_WARNING "%s(0x%p , %d)\n" , __func__ , dino_dev , d -> irq );
319
+ DBG (KERN_WARNING "%s(0x%px , %d)\n" , __func__ , dino_dev , d -> irq );
320
320
321
321
/*
322
322
** clear pending IRQ bits
@@ -396,7 +396,7 @@ static irqreturn_t dino_isr(int irq, void *intr_dev)
396
396
if (mask ) {
397
397
if (-- ilr_loop > 0 )
398
398
goto ilr_again ;
399
- printk (KERN_ERR "Dino 0x%p : stuck interrupt %d\n" ,
399
+ printk (KERN_ERR "Dino 0x%px : stuck interrupt %d\n" ,
400
400
dino_dev -> hba .base_addr , mask );
401
401
return IRQ_NONE ;
402
402
}
@@ -553,7 +553,7 @@ dino_fixup_bus(struct pci_bus *bus)
553
553
struct pci_dev * dev ;
554
554
struct dino_device * dino_dev = DINO_DEV (parisc_walk_tree (bus -> bridge ));
555
555
556
- DBG (KERN_WARNING "%s(0x%p ) bus %d platform_data 0x%p \n" ,
556
+ DBG (KERN_WARNING "%s(0x%px ) bus %d platform_data 0x%px \n" ,
557
557
__func__ , bus , bus -> busn_res .start ,
558
558
bus -> bridge -> platform_data );
559
559
@@ -854,7 +854,7 @@ static int __init dino_common_init(struct parisc_device *dev,
854
854
res -> flags = IORESOURCE_IO ; /* do not mark it busy ! */
855
855
if (request_resource (& ioport_resource , res ) < 0 ) {
856
856
printk (KERN_ERR "%s: request I/O Port region failed "
857
- "0x%lx/%lx (hpa 0x%p )\n" ,
857
+ "0x%lx/%lx (hpa 0x%px )\n" ,
858
858
name , (unsigned long )res -> start , (unsigned long )res -> end ,
859
859
dino_dev -> hba .base_addr );
860
860
return 1 ;
0 commit comments