aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/ata
diff options
context:
space:
mode:
authorAlexander Motin <mav@FreeBSD.org>2015-11-15 10:58:01 +0000
committerAlexander Motin <mav@FreeBSD.org>2015-11-15 10:58:01 +0000
commitdd7df419bb222932486051a619e1780192629692 (patch)
treecedf8b9a694d16737c5b3b8256ad72f2bb5cb9f4 /sys/dev/ata
parent6157e90c35f92b07c5545f811e6532d5d67e50cc (diff)
downloadsrc-dd7df419bb222932486051a619e1780192629692.tar.gz
src-dd7df419bb222932486051a619e1780192629692.zip
Increase reset assertion time from 10 to 100us.
On my own tests I see no effect from this change, but I also can't reproduce the reported problem in general. PR: 127391 PR: 204554 Submitted by: satz@iranger.com MFC after: 2 weeks
Notes
Notes: svn path=/head/; revision=290855
Diffstat (limited to 'sys/dev/ata')
-rw-r--r--sys/dev/ata/chipsets/ata-intel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/ata/chipsets/ata-intel.c b/sys/dev/ata/chipsets/ata-intel.c
index cdccdfb0ced6..46d0055208dc 100644
--- a/sys/dev/ata/chipsets/ata-intel.c
+++ b/sys/dev/ata/chipsets/ata-intel.c
@@ -422,7 +422,7 @@ ata_intel_reset(device_t dev)
mask |= (1 << smap[1]);
pci_write_config(parent, 0x92,
pci_read_config(parent, 0x92, 2) & ~mask, 2);
- DELAY(10);
+ DELAY(100);
pci_write_config(parent, 0x92,
pci_read_config(parent, 0x92, 2) | mask, 2);