Module Name:    src
Committed By:   matt
Date:           Thu Jun 23 17:42:46 UTC 2011

Modified Files:
        src/sys/dev/pci: if_alc.c

Log Message:
When printing the interrupt string, be like the other driver and do
"alc0: interrupting at msi 1" instead of "alc: msi 1".


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/sys/dev/pci/if_alc.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/dev/pci/if_alc.c
diff -u src/sys/dev/pci/if_alc.c:1.3 src/sys/dev/pci/if_alc.c:1.4
--- src/sys/dev/pci/if_alc.c:1.3	Fri Apr  8 13:56:51 2011
+++ src/sys/dev/pci/if_alc.c	Thu Jun 23 17:42:46 2011
@@ -707,7 +707,7 @@
 		printf("\n");
 		goto fail;
 	}
-	aprint_normal_dev(self, "%s\n", intrstr);
+	aprint_normal_dev(self, "interrupting at %s\n", intrstr);
 	
 	/* Set PHY address. */
 	sc->alc_phyaddr = ALC_PHY_ADDR;

Reply via email to