Commit 7401cb63 authored by Hauke Mehrtens's avatar Hauke Mehrtens Committed by John W. Linville

bcma: mips: make some info messages debug messages

Signed-off-by: default avatarHauke Mehrtens <hauke@hauke-m.de>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent e3f05a42
...@@ -143,7 +143,7 @@ static void bcma_core_mips_set_irq(struct bcma_device *dev, unsigned int irq) ...@@ -143,7 +143,7 @@ static void bcma_core_mips_set_irq(struct bcma_device *dev, unsigned int irq)
1 << irqflag); 1 << irqflag);
} }
bcma_info(bus, "set_irq: core 0x%04x, irq %d => %d\n", bcma_debug(bus, "set_irq: core 0x%04x, irq %d => %d\n",
dev->id.id, oldirq + 2, irq + 2); dev->id.id, oldirq + 2, irq + 2);
} }
...@@ -167,7 +167,7 @@ static void bcma_core_mips_print_irq(struct bcma_device *dev, unsigned int irq) ...@@ -167,7 +167,7 @@ static void bcma_core_mips_print_irq(struct bcma_device *dev, unsigned int irq)
{ {
int i; int i;
static const char *irq_name[] = {"2(S)", "3", "4", "5", "6", "D", "I"}; static const char *irq_name[] = {"2(S)", "3", "4", "5", "6", "D", "I"};
printk(KERN_INFO KBUILD_MODNAME ": core 0x%04x, irq :", dev->id.id); printk(KERN_DEBUG KBUILD_MODNAME ": core 0x%04x, irq :", dev->id.id);
for (i = 0; i <= 6; i++) for (i = 0; i <= 6; i++)
printk(" %s%s", irq_name[i], i == irq ? "*" : " "); printk(" %s%s", irq_name[i], i == irq ? "*" : " ");
printk("\n"); printk("\n");
...@@ -252,7 +252,7 @@ void bcma_core_mips_init(struct bcma_drv_mips *mcore) ...@@ -252,7 +252,7 @@ void bcma_core_mips_init(struct bcma_drv_mips *mcore)
if (mcore->setup_done) if (mcore->setup_done)
return; return;
bcma_info(bus, "Initializing MIPS core...\n"); bcma_debug(bus, "Initializing MIPS core...\n");
bcma_core_mips_early_init(mcore); bcma_core_mips_early_init(mcore);
...@@ -300,7 +300,7 @@ void bcma_core_mips_init(struct bcma_drv_mips *mcore) ...@@ -300,7 +300,7 @@ void bcma_core_mips_init(struct bcma_drv_mips *mcore)
"Unknown device (0x%x) found, can not configure IRQs\n", "Unknown device (0x%x) found, can not configure IRQs\n",
bus->chipinfo.id); bus->chipinfo.id);
} }
bcma_info(bus, "IRQ reconfiguration done\n"); bcma_debug(bus, "IRQ reconfiguration done\n");
bcma_core_mips_dump_irq(bus); bcma_core_mips_dump_irq(bus);
mcore->setup_done = true; mcore->setup_done = true;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment