From owner-svn-src-head@freebsd.org Mon Jul 6 09:44:08 2015 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F18AFA866; Mon, 6 Jul 2015 09:44:08 +0000 (UTC) (envelope-from smh@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DF66C1CC0; Mon, 6 Jul 2015 09:44:08 +0000 (UTC) (envelope-from smh@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t669i8iR045264; Mon, 6 Jul 2015 09:44:08 GMT (envelope-from smh@FreeBSD.org) Received: (from smh@localhost) by repo.freebsd.org (8.14.9/8.14.9/Submit) id t669i8VC045263; Mon, 6 Jul 2015 09:44:08 GMT (envelope-from smh@FreeBSD.org) Message-Id: <201507060944.t669i8VC045263@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: smh set sender to smh@FreeBSD.org using -f From: Steven Hartland Date: Mon, 6 Jul 2015 09:44:08 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r285200 - head/sys/dev/ahci X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Jul 2015 09:44:09 -0000 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);