diff options
author | Christian Weisgerber <naddy@cvs.openbsd.org> | 2022-04-06 18:59:31 +0000 |
---|---|---|
committer | Christian Weisgerber <naddy@cvs.openbsd.org> | 2022-04-06 18:59:31 +0000 |
commit | ebc1b592da53d1d38401806437530b56bffc8afd (patch) | |
tree | 5ee147f2b5a9dc203dd38da2c735f246fa830f58 /sys/dev/eisa/ahc_eisa.c | |
parent | 90576ca3c44963267c861feb5432ae35c1ccd46b (diff) |
constify struct cfattach
Diffstat (limited to 'sys/dev/eisa/ahc_eisa.c')
-rw-r--r-- | sys/dev/eisa/ahc_eisa.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/eisa/ahc_eisa.c b/sys/dev/eisa/ahc_eisa.c index 9cb83859de7..0ebfaa18251 100644 --- a/sys/dev/eisa/ahc_eisa.c +++ b/sys/dev/eisa/ahc_eisa.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ahc_eisa.c,v 1.24 2021/03/07 06:18:48 jsg Exp $ */ +/* $OpenBSD: ahc_eisa.c,v 1.25 2022/04/06 18:59:28 naddy Exp $ */ /* $NetBSD: ahc_eisa.c,v 1.10 1996/10/21 22:30:58 thorpej Exp $ */ /* @@ -32,7 +32,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ahc_eisa.c,v 1.24 2021/03/07 06:18:48 jsg Exp $ + * $Id: ahc_eisa.c,v 1.25 2022/04/06 18:59:28 naddy Exp $ */ #include <sys/param.h> @@ -59,7 +59,7 @@ int ahc_eisa_match(struct device *, void *, void *); void ahc_eisa_attach(struct device *, struct device *, void *); -struct cfattach ahc_eisa_ca = { +const struct cfattach ahc_eisa_ca = { sizeof(struct ahc_softc), ahc_eisa_match, ahc_eisa_attach }; |