--- trunk/reactos/drivers/usb/cromwell/core/hub.c 2005-06-13 20:41:59 UTC (rev 15896)
+++ trunk/reactos/drivers/usb/cromwell/core/hub.c 2005-06-13 20:45:52 UTC (rev 15897)
@@ -1019,7 +1019,7 @@
* 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++;
--- trunk/reactos/drivers/usb/cromwell/sys/linuxwrapper.c 2005-06-13 20:41:59 UTC (rev 15896)
+++ trunk/reactos/drivers/usb/cromwell/sys/linuxwrapper.c 2005-06-13 20:45:52 UTC (rev 15897)
@@ -74,7 +74,7 @@
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 @@
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 @@
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)
{