broadcom-diag: add diag support for Linksys E1000 V1
[openwrt.git] / target / linux / brcm47xx / patches-3.6 / 182-bcma-make-some-info-messages-debug.patch
1 --- a/drivers/bcma/driver_mips.c
2 +++ b/drivers/bcma/driver_mips.c
3 @@ -144,8 +144,8 @@ static void bcma_core_mips_set_irq(struc
4                              1 << irqflag);
5         }
6  
7 -       bcma_info(bus, "set_irq: core 0x%04x, irq %d => %d\n",
8 -                 dev->id.id, oldirq + 2, irq + 2);
9 +       bcma_debug(bus, "set_irq: core 0x%04x, irq %d => %d\n",
10 +                  dev->id.id, oldirq + 2, irq + 2);
11  }
12  
13  static void bcma_core_mips_set_irq_name(struct bcma_bus *bus, unsigned int irq,
14 @@ -168,7 +168,7 @@ static void bcma_core_mips_print_irq(str
15  {
16         int i;
17         static const char *irq_name[] = {"2(S)", "3", "4", "5", "6", "D", "I"};
18 -       printk(KERN_INFO KBUILD_MODNAME ": core 0x%04x, irq :", dev->id.id);
19 +       printk(KERN_DEBUG KBUILD_MODNAME ": core 0x%04x, irq :", dev->id.id);
20         for (i = 0; i <= 6; i++)
21                 printk(" %s%s", irq_name[i], i == irq ? "*" : " ");
22         printk("\n");
23 @@ -270,7 +270,7 @@ void bcma_core_mips_init(struct bcma_drv
24         if (mcore->setup_done)
25                 return;
26  
27 -       bcma_info(bus, "Initializing MIPS core...\n");
28 +       bcma_debug(bus, "Initializing MIPS core...\n");
29  
30         bcma_core_mips_early_init(mcore);
31  
32 @@ -315,7 +315,7 @@ void bcma_core_mips_init(struct bcma_drv
33                          "Unknown device (0x%x) found, can not configure IRQs\n",
34                          bus->chipinfo.id);
35         }
36 -       bcma_info(bus, "IRQ reconfiguration done\n");
37 +       bcma_debug(bus, "IRQ reconfiguration done\n");
38         bcma_core_mips_dump_irq(bus);
39  
40         mcore->setup_done = true;