aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/bcma
diff options
context:
space:
mode:
authorHauke Mehrtens <hauke@hauke-m.de>2013-01-03 18:51:22 -0500
committerJohn W. Linville <linville@tuxdriver.com>2013-01-07 15:18:28 -0500
commit7401cb63d00994dbdfdc2916b949b22e27475436 (patch)
tree44c93244c205507ebd107a4627ab2c25d0969e85 /drivers/bcma
parente3f05a42faac627d8704c76c1927e09b22443b7b (diff)
bcma: mips: make some info messages debug messages
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/bcma')
-rw-r--r--drivers/bcma/driver_mips.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/bcma/driver_mips.c b/drivers/bcma/driver_mips.c
index 171be0f541e0..486aa2dba581 100644
--- a/drivers/bcma/driver_mips.c
+++ b/drivers/bcma/driver_mips.c
@@ -143,8 +143,8 @@ static void bcma_core_mips_set_irq(struct bcma_device *dev, unsigned int irq)
143 1 << irqflag); 143 1 << irqflag);
144 } 144 }
145 145
146 bcma_info(bus, "set_irq: core 0x%04x, irq %d => %d\n", 146 bcma_debug(bus, "set_irq: core 0x%04x, irq %d => %d\n",
147 dev->id.id, oldirq + 2, irq + 2); 147 dev->id.id, oldirq + 2, irq + 2);
148} 148}
149 149
150static void bcma_core_mips_set_irq_name(struct bcma_bus *bus, unsigned int irq, 150static void bcma_core_mips_set_irq_name(struct bcma_bus *bus, unsigned int irq,
@@ -167,7 +167,7 @@ static void bcma_core_mips_print_irq(struct bcma_device *dev, unsigned int irq)
167{ 167{
168 int i; 168 int i;
169 static const char *irq_name[] = {"2(S)", "3", "4", "5", "6", "D", "I"}; 169 static const char *irq_name[] = {"2(S)", "3", "4", "5", "6", "D", "I"};
170 printk(KERN_INFO KBUILD_MODNAME ": core 0x%04x, irq :", dev->id.id); 170 printk(KERN_DEBUG KBUILD_MODNAME ": core 0x%04x, irq :", dev->id.id);
171 for (i = 0; i <= 6; i++) 171 for (i = 0; i <= 6; i++)
172 printk(" %s%s", irq_name[i], i == irq ? "*" : " "); 172 printk(" %s%s", irq_name[i], i == irq ? "*" : " ");
173 printk("\n"); 173 printk("\n");
@@ -252,7 +252,7 @@ void bcma_core_mips_init(struct bcma_drv_mips *mcore)
252 if (mcore->setup_done) 252 if (mcore->setup_done)
253 return; 253 return;
254 254
255 bcma_info(bus, "Initializing MIPS core...\n"); 255 bcma_debug(bus, "Initializing MIPS core...\n");
256 256
257 bcma_core_mips_early_init(mcore); 257 bcma_core_mips_early_init(mcore);
258 258
@@ -300,7 +300,7 @@ void bcma_core_mips_init(struct bcma_drv_mips *mcore)
300 "Unknown device (0x%x) found, can not configure IRQs\n", 300 "Unknown device (0x%x) found, can not configure IRQs\n",
301 bus->chipinfo.id); 301 bus->chipinfo.id);
302 } 302 }
303 bcma_info(bus, "IRQ reconfiguration done\n"); 303 bcma_debug(bus, "IRQ reconfiguration done\n");
304 bcma_core_mips_dump_irq(bus); 304 bcma_core_mips_dump_irq(bus);
305 305
306 mcore->setup_done = true; 306 mcore->setup_done = true;