summaryrefslogtreecommitdiffstats
path: root/sys/dev/pci/ahci.c
diff options
context:
space:
mode:
authordlg <dlg@openbsd.org>2007-02-20 22:27:59 +0000
committerdlg <dlg@openbsd.org>2007-02-20 22:27:59 +0000
commit91b131a653410e139edfe4b15a4b759104000f9e (patch)
tree0a1195b5a057ddec5e714d94574cd58b0c39623c /sys/dev/pci/ahci.c
parentKNF while here. (diff)
downloadwireguard-openbsd-91b131a653410e139edfe4b15a4b759104000f9e.tar.xz
wireguard-openbsd-91b131a653410e139edfe4b15a4b759104000f9e.zip
oops, missed one in the cmd list entry
Diffstat (limited to '')
-rw-r--r--sys/dev/pci/ahci.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/pci/ahci.c b/sys/dev/pci/ahci.c
index 98b1e1d6744..9123eea3f10 100644
--- a/sys/dev/pci/ahci.c
+++ b/sys/dev/pci/ahci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ahci.c,v 1.44 2007/02/20 22:25:30 dlg Exp $ */
+/* $OpenBSD: ahci.c,v 1.45 2007/02/20 22:27:59 dlg Exp $ */
/*
* Copyright (c) 2006 David Gwynne <dlg@openbsd.org>
@@ -243,6 +243,7 @@ int ahcidebug = AHCI_D_VERBOSE;
struct ahci_cmd_list {
u_int16_t prdtl; /* sgl len */
u_int16_t flags;
+#define AHCI_CMD_LIST_FLAG_CFL 0x001f /* Command FIS Length */
#define AHCI_CMD_LIST_FLAG_A (1<<5) /* ATAPI */
#define AHCI_CMD_LIST_FLAG_W (1<<6) /* Write */
#define AHCI_CMD_LIST_FLAG_P (1<<7) /* Prefetchable */