diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2021-10-24 17:52:29 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2021-10-24 17:52:29 +0000 |
commit | a659756f5b7f65c299334dd83e8c990521498c1c (patch) | |
tree | d5e3557e6d709f590a885118b803d0d65b252e85 /sys/dev/fdt/amlmmc.c | |
parent | e4e05f78be131db9b43987c72b93a5836d7b468f (diff) |
Constify struct cfattach.
ok visa@ a long time ago, ok patrick@
Diffstat (limited to 'sys/dev/fdt/amlmmc.c')
-rw-r--r-- | sys/dev/fdt/amlmmc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/fdt/amlmmc.c b/sys/dev/fdt/amlmmc.c index bc657e4844e..e106e4670b2 100644 --- a/sys/dev/fdt/amlmmc.c +++ b/sys/dev/fdt/amlmmc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: amlmmc.c,v 1.10 2021/04/20 19:33:03 kettenis Exp $ */ +/* $OpenBSD: amlmmc.c,v 1.11 2021/10/24 17:52:26 mpi Exp $ */ /* * Copyright (c) 2019 Mark Kettenis <kettenis@openbsd.org> * @@ -156,7 +156,7 @@ struct amlmmc_softc { int amlmmc_match(struct device *, void *, void *); void amlmmc_attach(struct device *, struct device *, void *); -struct cfattach amlmmc_ca = { +const struct cfattach amlmmc_ca = { sizeof (struct amlmmc_softc), amlmmc_match, amlmmc_attach }; |