svn commit: r274663 - head/sys/dev/pccbb

Warner Losh imp at FreeBSD.org
Tue Nov 18 17:06:47 UTC 2014


Author: imp
Date: Tue Nov 18 17:06:46 2014
New Revision: 274663
URL: https://svnweb.freebsd.org/changeset/base/274663

Log:
  Fix typo pointed out by avg@ and Joerg Sonnenberger. Add a clarifying
  sentence too.
  
  Sponsored by: Netflix

Modified:
  head/sys/dev/pccbb/pccbb.c

Modified: head/sys/dev/pccbb/pccbb.c
==============================================================================
--- head/sys/dev/pccbb/pccbb.c	Tue Nov 18 17:06:44 2014	(r274662)
+++ head/sys/dev/pccbb/pccbb.c	Tue Nov 18 17:06:46 2014	(r274663)
@@ -1591,10 +1591,10 @@ cbb_resume(device_t self)
 	 * from D0 and back to D0 cause the bridge to lose its config space, so
 	 * all the bus mappings and such are preserved.
 	 *
-	 * For most drivers, the PCI layer handles this saving. However,
-	 * sicne there's much black magic and archane art hidden in these
-	 * few lines of code that would be difficult to transition into
-	 * the PCI layer.
+	 * For most drivers, the PCI layer handles this saving. However, since
+	 * there's much black magic and arcane art hidden in these few lines of
+	 * code that would be difficult to transition into the PCI
+	 * layer. chipinit was several years of trial and error to write.
 	 */
 	pci_write_config(self, CBBR_SOCKBASE, rman_get_start(sc->base_res), 4);
 	DEVPRINTF((self, "PCI Memory allocated: %08lx\n",


More information about the svn-src-all mailing list