Date: Mon, 6 Jul 2015 09:44:08 +0000 (UTC) From: Steven Hartland <smh@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r285200 - head/sys/dev/ahci Message-ID: <201507060944.t669i8VC045263@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201507060944.t669i8VC045263>