Browse Source

Tidied up debug messages

tags/v0.9.3
Michael Brown 18 years ago
parent
commit
66f7bcc785
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      src/arch/i386/drivers/net/undinet.c

+ 2
- 1
src/arch/i386/drivers/net/undinet.c View File

538
 	undi_set_drvdata ( undi, netdev );
538
 	undi_set_drvdata ( undi, netdev );
539
 	memset ( undinic, 0, sizeof ( *undinic ) );
539
 	memset ( undinic, 0, sizeof ( *undinic ) );
540
 	undinic->entry = undi->entry;
540
 	undinic->entry = undi->entry;
541
+	DBGC ( undinic, "UNDINIC %p using UNDI %p\n", undinic, undi );
541
 
542
 
542
 	/* Hook in UNDI stack */
543
 	/* Hook in UNDI stack */
543
 	memset ( &start_undi, 0, sizeof ( start_undi ) );
544
 	memset ( &start_undi, 0, sizeof ( start_undi ) );
573
 		       undinic, undinic->irq );
574
 		       undinic, undinic->irq );
574
 		goto err_bad_irq;
575
 		goto err_bad_irq;
575
 	}
576
 	}
576
-	DBGC ( undinic, "UNDINIC %p (%s) using IRQ %d\n",
577
+	DBGC ( undinic, "UNDINIC %p is %s on IRQ %d\n",
577
 	       undinic, eth_ntoa ( netdev->ll_addr ), undinic->irq );
578
 	       undinic, eth_ntoa ( netdev->ll_addr ), undinic->irq );
578
 
579
 
579
 	/* Point to NIC specific routines */
580
 	/* Point to NIC specific routines */

Loading…
Cancel
Save