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,6 +538,7 @@ int undinet_probe ( struct undi_device *undi ) {
538 538
 	undi_set_drvdata ( undi, netdev );
539 539
 	memset ( undinic, 0, sizeof ( *undinic ) );
540 540
 	undinic->entry = undi->entry;
541
+	DBGC ( undinic, "UNDINIC %p using UNDI %p\n", undinic, undi );
541 542
 
542 543
 	/* Hook in UNDI stack */
543 544
 	memset ( &start_undi, 0, sizeof ( start_undi ) );
@@ -573,7 +574,7 @@ int undinet_probe ( struct undi_device *undi ) {
573 574
 		       undinic, undinic->irq );
574 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 578
 	       undinic, eth_ntoa ( netdev->ll_addr ), undinic->irq );
578 579
 
579 580
 	/* Point to NIC specific routines */

Loading…
Cancel
Save