From d27ecf16d2ff08a0f90dc58b618b3644d2dca279 Mon Sep 17 00:00:00 2001 From: deraadt Date: Sat, 17 Aug 2024 15:10:00 +0000 Subject: [PATCH] icc_detach was not listed in cfattach --- sys/dev/i2c/icc.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sys/dev/i2c/icc.c b/sys/dev/i2c/icc.c index 14dfc81cd83..1ce60ee50b8 100644 --- a/sys/dev/i2c/icc.c +++ b/sys/dev/i2c/icc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: icc.c,v 1.1 2022/11/11 15:25:13 matthieu Exp $ */ +/* $OpenBSD: icc.c,v 1.2 2024/08/17 15:10:00 deraadt Exp $ */ /* * Copyright (c) 2021 Anton Lindqvist @@ -48,6 +48,7 @@ const struct cfattach icc_ca = { sizeof(struct icc_softc), icc_match, icc_attach, + icc_detach }; int -- 2.20.1