Skip to content

Commit

Permalink
irqchip/bcm: Remove hashed address printing
Browse files Browse the repository at this point in the history
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 <[email protected]>
Signed-off-by: Jaedon Shin <[email protected]>
Signed-off-by: Marc Zyngier <[email protected]>
  • Loading branch information
jaedon authored and Marc Zyngier committed Feb 16, 2018
1 parent de337ee commit 2d02424
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 9 deletions.
3 changes: 0 additions & 3 deletions drivers/irqchip/irq-bcm7038-l1.c
Original file line number Diff line number Diff line change
Expand Up @@ -339,9 +339,6 @@ int __init bcm7038_l1_of_init(struct device_node *dn,
goto out_unmap;
}

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

return 0;

out_unmap:
Expand Down
3 changes: 0 additions & 3 deletions drivers/irqchip/irq-bcm7120-l2.c
Original file line number Diff line number Diff line change
Expand Up @@ -318,9 +318,6 @@ static int __init bcm7120_l2_intc_probe(struct device_node *dn,
}
}

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

return 0;

out_free_domain:
Expand Down
3 changes: 0 additions & 3 deletions drivers/irqchip/irq-brcmstb-l2.c
Original file line number Diff line number Diff line change
Expand Up @@ -262,9 +262,6 @@ static int __init brcmstb_l2_intc_of_init(struct device_node *np,
ct->chip.irq_set_wake = irq_gc_set_wake;
}

pr_info("registered L2 intc (mem: 0x%p, parent irq: %d)\n",
base, parent_irq);

return 0;

out_free_domain:
Expand Down

0 comments on commit 2d02424

Please sign in to comment.