Skip to content

Commit 2d02424

Browse files
jaedonMarc Zyngier
authored andcommitted
irqchip/bcm: Remove hashed address printing
Since commit ad67b74 ("printk: hash addresses printed with %p") pointers are being hashed when printed. Displaying the virtual memory at bootup time is not helpful. so delete the prints. Acked-by: Florian Fainelli <f.fainelli@gmail.com> Signed-off-by: Jaedon Shin <jaedon.shin@gmail.com> Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
1 parent de337ee commit 2d02424

File tree

3 files changed

+0
-9
lines changed

3 files changed

+0
-9
lines changed

drivers/irqchip/irq-bcm7038-l1.c

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -339,9 +339,6 @@ int __init bcm7038_l1_of_init(struct device_node *dn,
339339
goto out_unmap;
340340
}
341341

342-
pr_info("registered BCM7038 L1 intc (mem: 0x%p, IRQs: %d)\n",
343-
intc->cpus[0]->map_base, IRQS_PER_WORD * intc->n_words);
344-
345342
return 0;
346343

347344
out_unmap:

drivers/irqchip/irq-bcm7120-l2.c

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -318,9 +318,6 @@ static int __init bcm7120_l2_intc_probe(struct device_node *dn,
318318
}
319319
}
320320

321-
pr_info("registered %s intc (mem: 0x%p, parent IRQ(s): %d)\n",
322-
intc_name, data->map_base[0], data->num_parent_irqs);
323-
324321
return 0;
325322

326323
out_free_domain:

drivers/irqchip/irq-brcmstb-l2.c

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -262,9 +262,6 @@ static int __init brcmstb_l2_intc_of_init(struct device_node *np,
262262
ct->chip.irq_set_wake = irq_gc_set_wake;
263263
}
264264

265-
pr_info("registered L2 intc (mem: 0x%p, parent irq: %d)\n",
266-
base, parent_irq);
267-
268265
return 0;
269266

270267
out_free_domain:

0 commit comments

Comments
 (0)