diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2022-03-11 18:00:54 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2022-03-11 18:00:54 +0000 |
commit | cfb4d61dc1dd87dca103128e4ad1ae774cc70cdc (patch) | |
tree | 6aea6d82a08b4b76b7e20217ed0f623bff22e12e /sys/dev/pci/if_myx.c | |
parent | b9269c543aa26a0786f58657c5d117f81c8f67e3 (diff) |
Constify struct cfattach.
Diffstat (limited to 'sys/dev/pci/if_myx.c')
-rw-r--r-- | sys/dev/pci/if_myx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_myx.c b/sys/dev/pci/if_myx.c index 99a5d2a3b98..76012c1134a 100644 --- a/sys/dev/pci/if_myx.c +++ b/sys/dev/pci/if_myx.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_myx.c,v 1.115 2021/02/08 08:18:45 mpi Exp $ */ +/* $OpenBSD: if_myx.c,v 1.116 2022/03/11 18:00:48 mpi Exp $ */ /* * Copyright (c) 2007 Reyk Floeter <reyk@openbsd.org> @@ -247,7 +247,7 @@ void myx_kstat_stop(struct myx_softc *); struct cfdriver myx_cd = { NULL, "myx", DV_IFNET }; -struct cfattach myx_ca = { +const struct cfattach myx_ca = { sizeof(struct myx_softc), myx_match, myx_attach }; |