Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/sys/dev/ic/icp.c,v rcsdiff: /ftp/cvs/cvsroot/src/sys/dev/ic/icp.c,v: warning: Unknown phrases like `commitid ...;' are present. retrieving revision 1.35 retrieving revision 1.35.8.1 diff -u -p -r1.35 -r1.35.8.1 --- src/sys/dev/ic/icp.c 2021/04/24 23:36:55 1.35 +++ src/sys/dev/ic/icp.c 2021/08/04 20:14:42 1.35.8.1 @@ -1,4 +1,4 @@ -/* $NetBSD: icp.c,v 1.35 2021/04/24 23:36:55 thorpej Exp $ */ +/* $NetBSD: icp.c,v 1.35.8.1 2021/08/04 20:14:42 thorpej Exp $ */ /*- * Copyright (c) 2002, 2003 The NetBSD Foundation, Inc. @@ -76,7 +76,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: icp.c,v 1.35 2021/04/24 23:36:55 thorpej Exp $"); +__KERNEL_RCSID(0, "$NetBSD: icp.c,v 1.35.8.1 2021/08/04 20:14:42 thorpej Exp $"); #include #include @@ -366,9 +366,8 @@ icp_init(struct icp_softc *icp, const ch icp->icp_children[icpa.icpa_unit] = config_found(icp->icp_dv, &icpa, icp_print, - CFARG_SUBMATCH, config_stdsubmatch, - CFARG_LOCATORS, locs, - CFARG_EOL); + CFARGS(.submatch = config_stdsubmatch, + .locators = locs)); } } @@ -386,9 +385,8 @@ icp_init(struct icp_softc *icp, const ch icp->icp_children[icpa.icpa_unit] = config_found(icp->icp_dv, &icpa, icp_print, - CFARG_SUBMATCH, config_stdsubmatch, - CFARG_LOCATORS, locs, - CFARG_EOL); + CFARGS(.submatch = config_stdsubmatch, + .locators = locs)); } } @@ -514,9 +512,8 @@ icp_rescan(struct icp_softc *icp, int un icp->icp_children[unit] = config_found(icp->icp_dv, &icpa, icp_print, - CFARG_SUBMATCH, config_stdsubmatch, - CFARG_LOCATORS, locs, - CFARG_EOL); + CFARGS(.submatch = config_stdsubmatch, + .locators = locs)); } icp_recompute_openings(icp);