Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/jdolecek-ncq]: src/sys/dev/ic reduce the polling interval also for siisa...



details:   https://anonhg.NetBSD.org/src/rev/b698e26c2cf4
branches:  jdolecek-ncq
changeset: 822945:b698e26c2cf4
user:      jdolecek <jdolecek%NetBSD.org@localhost>
date:      Sat Jun 24 11:34:33 2017 +0000

description:
reduce the polling interval also for siisata_cmd_start()

diffstat:

 sys/dev/ic/siisata.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 5b21b3c4d877 -r b698e26c2cf4 sys/dev/ic/siisata.c
--- a/sys/dev/ic/siisata.c      Sat Jun 24 00:23:39 2017 +0000
+++ b/sys/dev/ic/siisata.c      Sat Jun 24 11:34:33 2017 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: siisata.c,v 1.30.4.21 2017/06/23 23:49:20 jdolecek Exp $ */
+/* $NetBSD: siisata.c,v 1.30.4.22 2017/06/24 11:34:33 jdolecek Exp $ */
 
 /* from ahcisata_core.c */
 
@@ -79,7 +79,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: siisata.c,v 1.30.4.21 2017/06/23 23:49:20 jdolecek Exp $");
+__KERNEL_RCSID(0, "$NetBSD: siisata.c,v 1.30.4.22 2017/06/24 11:34:33 jdolecek Exp $");
 
 #include <sys/types.h>
 #include <sys/param.h>
@@ -948,7 +948,7 @@
                if (ata_c->flags & AT_DONE)
                        break;
                siisata_intr_port(schp);
-               DELAY(1000);
+               DELAY(100);
        }
 
        if ((ata_c->flags & AT_DONE) == 0) {



Home | Main Index | Thread Index | Old Index