diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2022-03-13 08:04:39 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2022-03-13 08:04:39 +0000 |
commit | ecd34776fe2c5a8a2e74ded8ea4c93337cf01d30 (patch) | |
tree | 6ba4139991fafde7a514b0444cb7d3596bfaf6d7 /sys/arch/alpha/pci/apecs.c | |
parent | 992ad5fdbf7650fb9cae2161ef0444188157e7bd (diff) |
Constify struct cfattach.
ok miod@
Diffstat (limited to 'sys/arch/alpha/pci/apecs.c')
-rw-r--r-- | sys/arch/alpha/pci/apecs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/alpha/pci/apecs.c b/sys/arch/alpha/pci/apecs.c index 43dc7578570..9a8c08c03d0 100644 --- a/sys/arch/alpha/pci/apecs.c +++ b/sys/arch/alpha/pci/apecs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: apecs.c,v 1.22 2009/03/30 21:43:13 kettenis Exp $ */ +/* $OpenBSD: apecs.c,v 1.23 2022/03/13 08:04:13 mpi Exp $ */ /* $NetBSD: apecs.c,v 1.16 1996/12/05 01:39:34 cgd Exp $ */ /*- @@ -90,7 +90,7 @@ int apecsmatch(struct device *, void *, void *); void apecsattach(struct device *, struct device *, void *); -struct cfattach apecs_ca = { +const struct cfattach apecs_ca = { sizeof(struct device), apecsmatch, apecsattach, }; |