svn commit: r285200 - head/sys/dev/ahci

Steven Hartland smh at FreeBSD.org
Mon Jul 6 09:44:09 UTC 2015


Author: smh
Date: Mon Jul  6 09:44:07 2015
New Revision: 285200
URL: https://svnweb.freebsd.org/changeset/base/285200

Log:
  Correct bit offsets for ahci quirks
  
  Fix bit offsets causing incorrect quirks being reported on boot for ahci
  introduced by r280184.
  
  MFC after:	3 days
  Sponsored by:	Multiplay

Modified:
  head/sys/dev/ahci/ahci.h

Modified: head/sys/dev/ahci/ahci.h
==============================================================================
--- head/sys/dev/ahci/ahci.h	Mon Jul  6 09:10:27 2015	(r285199)
+++ head/sys/dev/ahci/ahci.h	Mon Jul  6 09:44:07 2015	(r285200)
@@ -600,8 +600,8 @@ enum ahci_err_type {
 	"\020SATA1_UNIT0"	\
 	"\021ABAR0"		\
 	"\0221MSI"              \
-	"\022FORCE_PI"          \
-	"\023RESTORE_CAP"
+	"\023FORCE_PI"          \
+	"\024RESTORE_CAP"
 
 int ahci_attach(device_t dev);
 int ahci_detach(device_t dev);


More information about the svn-src-all mailing list