Constify struct cfattach.
authormpi <mpi@openbsd.org>
Sat, 12 Mar 2022 14:40:41 +0000 (14:40 +0000)
committermpi <mpi@openbsd.org>
Sat, 12 Mar 2022 14:40:41 +0000 (14:40 +0000)
ok patrick@

sys/arch/arm/arm/cpu.c
sys/arch/arm/cortex/agtimer.c
sys/arch/arm/cortex/ampintc.c
sys/arch/arm/cortex/amptimer.c
sys/arch/arm/cortex/arml2cc.c
sys/arch/arm/cortex/cortex.c
sys/arch/arm/mainbus/mainbus.c
sys/arch/arm/simplebus/simplebus.c

index 8c0125c..9c1b78c 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: cpu.c,v 1.56 2021/11/26 14:45:13 jsg Exp $    */
+/*     $OpenBSD: cpu.c,v 1.57 2022/03/12 14:40:41 mpi Exp $    */
 /*     $NetBSD: cpu.c,v 1.56 2004/04/14 04:01:49 bsh Exp $     */
 
 
@@ -145,7 +145,7 @@ int cpu_node;
 int    cpu_match(struct device *, void *, void *);
 void   cpu_attach(struct device *, struct device *, void *);
 
-struct cfattach cpu_ca = {
+const struct cfattach cpu_ca = {
        sizeof(struct device), cpu_match, cpu_attach
 };
 
index b2ec10d..6b5505f 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: agtimer.c,v 1.14 2021/05/16 03:39:27 jsg Exp $ */
+/* $OpenBSD: agtimer.c,v 1.15 2022/03/12 14:40:41 mpi Exp $ */
 /*
  * Copyright (c) 2011 Dale Rahn <drahn@openbsd.org>
  * Copyright (c) 2013 Patrick Wildt <patrick@blueri.se>
@@ -85,7 +85,7 @@ void          agtimer_setstatclockrate(int stathz);
 void           agtimer_set_clockrate(int32_t new_frequency);
 void           agtimer_startclock(void);
 
-struct cfattach agtimer_ca = {
+const struct cfattach agtimer_ca = {
        sizeof (struct agtimer_softc), agtimer_match, agtimer_attach
 };
 
index 9689599..f0d4e3f 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: ampintc.c,v 1.30 2022/01/03 03:06:49 jsg Exp $ */
+/* $OpenBSD: ampintc.c,v 1.31 2022/03/12 14:40:41 mpi Exp $ */
 /*
  * Copyright (c) 2007,2009,2011 Dale Rahn <drahn@openbsd.org>
  *
@@ -199,7 +199,7 @@ int          ampintc_ipi_nop(void *);
 int             ampintc_ipi_ddb(void *);
 void            ampintc_send_ipi(struct cpu_info *, int);
 
-struct cfattach        ampintc_ca = {
+const struct cfattach  ampintc_ca = {
        sizeof (struct ampintc_softc), ampintc_match, ampintc_attach
 };
 
@@ -836,7 +836,7 @@ struct ampintc_msi_softc {
        struct interrupt_controller      sc_ic;
 };
 
-struct cfattach        ampintcmsi_ca = {
+const struct cfattach  ampintcmsi_ca = {
        sizeof (struct ampintc_msi_softc), ampintc_msi_match, ampintc_msi_attach
 };
 
index 7c5ff9b..61e32ea 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: amptimer.c,v 1.13 2021/05/16 03:39:27 jsg Exp $ */
+/* $OpenBSD: amptimer.c,v 1.14 2022/03/12 14:40:41 mpi Exp $ */
 /*
  * Copyright (c) 2011 Dale Rahn <drahn@openbsd.org>
  *
@@ -122,7 +122,7 @@ void        *ampintc_intr_establish(int, int, int, struct cpu_info *,
 
 
 
-struct cfattach amptimer_ca = {
+const struct cfattach amptimer_ca = {
        sizeof (struct amptimer_softc), amptimer_match, amptimer_attach
 };
 
index b399708..4d79d6a 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: arml2cc.c,v 1.7 2021/05/16 15:10:19 deraadt Exp $ */
+/* $OpenBSD: arml2cc.c,v 1.8 2022/03/12 14:40:41 mpi Exp $ */
 /*
  * Copyright (c) 2013 Patrick Wildt <patrick@blueri.se>
  *
@@ -111,7 +111,7 @@ void arml2cc_cache_op(struct arml2cc_softc *, bus_size_t, uint32_t);
 void arml2cc_cache_sync(struct arml2cc_softc *);
 void arml2cc_sdcache_drain_writebuf(void);
 
-struct cfattach armliicc_ca = {
+const struct cfattach armliicc_ca = {
        sizeof (struct arml2cc_softc), arml2cc_match, arml2cc_attach
 };
 
index 3259001..3a55612 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: cortex.c,v 1.6 2020/04/29 15:25:07 kettenis Exp $     */
+/*     $OpenBSD: cortex.c,v 1.7 2022/03/12 14:40:41 mpi Exp $  */
 /* $NetBSD: mainbus.c,v 1.3 2001/06/13 17:52:43 nathanw Exp $ */
 
 /*
@@ -80,7 +80,7 @@ int cortexsearch(struct device *,  void *, void *);
 
 /* attach and device structures for the device */
 
-struct cfattach cortex_ca = {
+const struct cfattach cortex_ca = {
        sizeof(struct device), cortexmatch, cortexattach, NULL,
        config_activate_children
 };
index ea2e34d..e5badd4 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: mainbus.c,v 1.23 2020/08/26 03:29:05 visa Exp $ */
+/* $OpenBSD: mainbus.c,v 1.24 2022/03/12 14:40:41 mpi Exp $ */
 /*
  * Copyright (c) 2016 Patrick Wildt <patrick@blueri.se>
  * Copyright (c) 2017 Mark Kettenis <kettenis@openbsd.org>
@@ -50,7 +50,7 @@ struct mainbus_softc {
        int                      sc_early;
 };
 
-struct cfattach mainbus_ca = {
+const struct cfattach mainbus_ca = {
        sizeof(struct mainbus_softc), mainbus_match, mainbus_attach, NULL,
        config_activate_children
 };
index b772cbe..7fac1db 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: simplebus.c,v 1.18 2021/12/06 20:01:54 kettenis Exp $ */
+/* $OpenBSD: simplebus.c,v 1.19 2022/03/12 14:40:41 mpi Exp $ */
 /*
  * Copyright (c) 2016 Patrick Wildt <patrick@blueri.se>
  *
@@ -39,7 +39,7 @@ int simplebus_dmamap_load_buffer(bus_dma_tag_t, bus_dmamap_t, void *,
 int simplebus_dmamap_load_raw(bus_dma_tag_t, bus_dmamap_t,
     bus_dma_segment_t *, int, bus_size_t, int);
 
-struct cfattach simplebus_ca = {
+const struct cfattach simplebus_ca = {
        sizeof(struct simplebus_softc), simplebus_match, simplebus_attach
 };