Source-Changes-HG archive

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

[src/trunk]: src/tests/dev/scsipi/libscsitest config_found_ia() -> config_fou...



details:   https://anonhg.NetBSD.org/src/rev/947e8b0d1f69
branches:  trunk
changeset: 961903:947e8b0d1f69
user:      thorpej <thorpej%NetBSD.org@localhost>
date:      Sun Apr 25 05:33:20 2021 +0000

description:
config_found_ia() -> config_found().

diffstat:

 tests/dev/scsipi/libscsitest/scsitest.c |  8 +++++---
 1 files changed, 5 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r b65441b46b43 -r 947e8b0d1f69 tests/dev/scsipi/libscsitest/scsitest.c
--- a/tests/dev/scsipi/libscsitest/scsitest.c   Sun Apr 25 05:16:26 2021 +0000
+++ b/tests/dev/scsipi/libscsitest/scsitest.c   Sun Apr 25 05:33:20 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: scsitest.c,v 1.3 2019/02/06 09:16:49 mrg Exp $ */
+/*     $NetBSD: scsitest.c,v 1.4 2021/04/25 05:33:20 thorpej Exp $     */
 
 /*
  * Copyright (c) 2010 Antti Kantee.  All Rights Reserved.
@@ -35,7 +35,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: scsitest.c,v 1.3 2019/02/06 09:16:49 mrg Exp $");
+__KERNEL_RCSID(0, "$NetBSD: scsitest.c,v 1.4 2021/04/25 05:33:20 thorpej Exp $");
 
 #include <sys/param.h>
 #include <sys/atomic.h>
@@ -255,5 +255,7 @@
        sc->sc_channel.chan_flags = SCSIPI_CHAN_NOSETTLE;
        sc->sc_channel.chan_adapter = &sc->sc_adapter;
 
-       config_found_ia(self, "scsi", &sc->sc_channel, scsiprint);
+       config_found(self, &sc->sc_channel, scsiprint,
+           CFARG_IATTR, "scsi",
+           CFARG_EOL);
 }



Home | Main Index | Thread Index | Old Index