Silent some debug messages
authorHervé Poussineau <hpoussin@reactos.org>
Mon, 13 Jun 2005 20:45:52 +0000 (20:45 +0000)
committerHervé Poussineau <hpoussin@reactos.org>
Mon, 13 Jun 2005 20:45:52 +0000 (20:45 +0000)
svn path=/trunk/; revision=15897

reactos/drivers/usb/cromwell/core/hub.c
reactos/drivers/usb/cromwell/sys/linuxwrapper.c

index dbb91f9..2c2502b 100644 (file)
@@ -1019,7 +1019,7 @@ static void hub_events(void)
         * safe since we delete the hub from the event list.
         * Not the most efficient, but avoids deadlocks.
         */
-       DPRINT1("hub_events() called\n");
+       //DPRINT1("hub_events() called\n");
 
        while (m<5) {
                m++;
index 3e9b41e..bc120ac 100644 (file)
@@ -74,7 +74,7 @@ void init_wrapper(struct pci_dev *probe_dev)
 void handle_irqs(int irq)
 {
        int n;
-       printk("handle irqs\n");
+       //printk("handle irqs\n");
        for(n=0;n<MAX_IRQS;n++)
        {
                if (reg_irqs[n].handler && (irq==reg_irqs[n].irq || irq==-1))
@@ -100,7 +100,7 @@ void do_all_timers(void)
                        main_timer_list[n]->expires=0;
 
                        main_timer_list[n]=NULL; // remove timer
-                       printk("do timer %i fn %p\n",n,function);
+                       //printk("do timer %i fn %p\n",n,function);
 
                        function(data);
                }
@@ -170,7 +170,7 @@ int my_device_add(struct device *dev)
                        if (m_drivers[n]->probe)
                        {
                                dev->driver=m_drivers[n];
-                               printk("probe%i %p ",n,m_drivers[n]->probe);
+                               printk("probe%i %p\n",n,m_drivers[n]->probe);
 
                                if (m_drivers[n]->probe(dev) == 0)
                                {