summaryrefslogtreecommitdiff
path: root/tests/dev
diff options
context:
space:
mode:
authorthorpej <thorpej@NetBSD.org>2021-04-25 05:33:20 +0000
committerthorpej <thorpej@NetBSD.org>2021-04-25 05:33:20 +0000
commitdf451d0b1c632085947b58df6fe3366fe64c18d6 (patch)
treead04c22f0b395083b2dce000c94461ed6d32560a /tests/dev
parente8499140ef3d556a59c4fb6bb5c98c80240b23c1 (diff)
config_found_ia() -> config_found().
Diffstat (limited to 'tests/dev')
-rw-r--r--tests/dev/scsipi/libscsitest/scsitest.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/tests/dev/scsipi/libscsitest/scsitest.c b/tests/dev/scsipi/libscsitest/scsitest.c
index 1136c5e01a1..078670eeebe 100644
--- a/tests/dev/scsipi/libscsitest/scsitest.c
+++ b/tests/dev/scsipi/libscsitest/scsitest.c
@@ -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 @@ scsitest_attach(device_t parent, device_t self, void *aux)
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);
}