Module Name:    src
Committed By:   martin
Date:           Sat Feb 22 13:13:38 UTC 2025

Modified Files:
        src/sys/arch/alpha/jensenio [netbsd-10]: jensenio.c

Log Message:
Pull up following revision(s) (requested by thorpej in ticket #1065):

        sys/arch/alpha/jensenio/jensenio.c: revision 1.24

Fix a paste-o introduced in rev 1.22 that prevented ISA bus instances from 
attaching.


To generate a diff of this commit:
cvs rdiff -u -r1.22 -r1.22.6.1 src/sys/arch/alpha/jensenio/jensenio.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/alpha/jensenio/jensenio.c
diff -u src/sys/arch/alpha/jensenio/jensenio.c:1.22 src/sys/arch/alpha/jensenio/jensenio.c:1.22.6.1
--- src/sys/arch/alpha/jensenio/jensenio.c:1.22	Sat Aug  7 16:18:40 2021
+++ src/sys/arch/alpha/jensenio/jensenio.c	Sat Feb 22 13:13:38 2025
@@ -1,4 +1,4 @@
-/* $NetBSD: jensenio.c,v 1.22 2021/08/07 16:18:40 thorpej Exp $ */
+/* $NetBSD: jensenio.c,v 1.22.6.1 2025/02/22 13:13:38 martin Exp $ */
 
 /*-
  * Copyright (c) 1999, 2000 The NetBSD Foundation, Inc.
@@ -43,7 +43,7 @@
 
 #include <sys/cdefs.h>			/* RCS ID & Copyright macro defns */
 
-__KERNEL_RCSID(0, "$NetBSD: jensenio.c,v 1.22 2021/08/07 16:18:40 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: jensenio.c,v 1.22.6.1 2025/02/22 13:13:38 martin Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -215,7 +215,7 @@ jensenio_attach(device_t parent, device_
 	ja.ja_isa.iba_dmat = &jcp->jc_dmat_isa;
 	ja.ja_isa.iba_ic = &jcp->jc_ic;
 	config_found(self, &ja.ja_isa, isabusprint,
-	    CFARGS(.iattr = "eisabus"));
+	    CFARGS(.iattr = "isabus"));
 }
 
 static int

Reply via email to