diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2007-02-20 22:28:00 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2007-02-20 22:28:00 +0000 |
commit | 97cc075bab22578c6184a864bf2e081b7ff6f260 (patch) | |
tree | cb06c4987847ff9c0d2ed1b8dedaa9342d94d440 /sys/dev/pci | |
parent | 20ec410a244f4aa2734f32891e550024a842d6f0 (diff) |
oops, missed one in the cmd list entry
Diffstat (limited to 'sys/dev/pci')
-rw-r--r-- | sys/dev/pci/ahci.c | 3 |
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 */ |