aboutsummaryrefslogtreecommitdiff
path: root/sys/sparc64/sparc64
diff options
context:
space:
mode:
authorAndriy Gapon <avg@FreeBSD.org>2018-07-23 15:36:55 +0000
committerAndriy Gapon <avg@FreeBSD.org>2018-07-23 15:36:55 +0000
commit2559473944b9178c3ae1e23e5393c53cccb47c66 (patch)
tree8ceada81add28249ac8fee620a61778c7260b33b /sys/sparc64/sparc64
parentd05db9a4ff2182cf97c5d7569c2a3a669c34101c (diff)
downloadsrc-2559473944b9178c3ae1e23e5393c53cccb47c66.tar.gz
src-2559473944b9178c3ae1e23e5393c53cccb47c66.zip
follow-up to r336635, update TAILQ to CK_SLIST for ie_handlers
arm, mips and sparc64 were affected.
Notes
Notes: svn path=/head/; revision=336639
Diffstat (limited to 'sys/sparc64/sparc64')
-rw-r--r--sys/sparc64/sparc64/intr_machdep.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/sparc64/sparc64/intr_machdep.c b/sys/sparc64/sparc64/intr_machdep.c
index a3efdc3b6bd0..45196331af37 100644
--- a/sys/sparc64/sparc64/intr_machdep.c
+++ b/sys/sparc64/sparc64/intr_machdep.c
@@ -375,7 +375,7 @@ inthand_add(const char *name, int vec, driver_filter_t *filt,
* pretty rare in practice.
*/
filter = 0;
- TAILQ_FOREACH(ih, &ie->ie_handlers, ih_next) {
+ CK_SLIST_FOREACH(ih, &ie->ie_handlers, ih_next) {
if (ih->ih_filter != NULL && ih->ih_filter != filt) {
filter = 1;
break;