diff options
author | Michal Simek <monstr@monstr.eu> | 2011-11-07 16:42:12 +0400 |
---|---|---|
committer | Michal Simek <monstr@monstr.eu> | 2012-03-23 12:28:15 +0400 |
commit | cc5647a64e8c6691be87a83632d8b1c78b795023 (patch) | |
tree | 4e1923bb7d0ad2c6b07f5ba3f2be4ae4f242af3a /arch/microblaze/kernel/intc.c | |
parent | 7c0d26150781cbd8a522259c9dea9e7ef23df8e3 (diff) | |
download | linux-cc5647a64e8c6691be87a83632d8b1c78b795023.tar.xz |
microblaze: Use node name instead of compatible string
Change report in bootlog:
Origin:
xlnx,xps-intc-1.00.a #0 at 0xc8000000, num_irq=6, edge=0x4
xlnx,xps-timer-1.00.a #0 at 0xc8004000, irq=2
New:
interrupt-controller #0 at 0xc8000000, num_irq=6, edge=0x4
system-timer #0 at 0xc8004000, irq=2
Signed-off-by: Michal Simek <monstr@monstr.eu>
Diffstat (limited to 'arch/microblaze/kernel/intc.c')
-rw-r--r-- | arch/microblaze/kernel/intc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/microblaze/kernel/intc.c b/arch/microblaze/kernel/intc.c index 44b177e2ab12..3003d2f9f551 100644 --- a/arch/microblaze/kernel/intc.c +++ b/arch/microblaze/kernel/intc.c @@ -131,8 +131,8 @@ void __init init_IRQ(void) #ifdef CONFIG_SELFMOD_INTC selfmod_function((int *) arr_func, intc_baseaddr); #endif - printk(KERN_INFO "XPS intc #0 at 0x%08x, num_irq=%d, edge=0x%x\n", - intc_baseaddr, nr_irq, intr_mask); + printk(KERN_INFO "%s #0 at 0x%08x, num_irq=%d, edge=0x%x\n", + intc->name, intc_baseaddr, nr_irq, intr_mask); /* * Disable all external interrupts until they are |