diff options
author | sos <sos@FreeBSD.org> | 2002-03-05 09:24:19 +0000 |
---|---|---|
committer | sos <sos@FreeBSD.org> | 2002-03-05 09:24:19 +0000 |
commit | 9efc11065b8c97c4d238abf06c92522301113cf3 (patch) | |
tree | c9f73969b3cb1de8b9bddf4aa0aa76b7276fdaa0 /sys/dev/ata/ata-disk.c | |
parent | 92361f6aadf0c42e4292208de34b080d7479303c (diff) | |
download | FreeBSD-src-9efc11065b8c97c4d238abf06c92522301113cf3.zip FreeBSD-src-9efc11065b8c97c4d238abf06c92522301113cf3.tar.gz |
Misc little cleanups:
Link if only ATAPI device in kernel config
Remove unused #includes
Rearrange a bit in ata-raid to make diff against -stable smaller
Enable wc as default again, dunne how this happend...
Diffstat (limited to 'sys/dev/ata/ata-disk.c')
-rw-r--r-- | sys/dev/ata/ata-disk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/ata/ata-disk.c b/sys/dev/ata/ata-disk.c index 88e5bae..4bbce23 100644 --- a/sys/dev/ata/ata-disk.c +++ b/sys/dev/ata/ata-disk.c @@ -86,7 +86,7 @@ static int ad_version(u_int16_t); /* internal vars */ static u_int32_t adp_lun_map = 0; static int ata_dma = 1; -static int ata_wc = 0; +static int ata_wc = 1; static int ata_tags = 0; TUNABLE_INT("hw.ata.ata_dma", &ata_dma); TUNABLE_INT("hw.ata.wc", &ata_wc); |