diff options
Diffstat (limited to 'sys/dev/sbus/dma_sbus.c')
-rw-r--r-- | sys/dev/sbus/dma_sbus.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/sbus/dma_sbus.c b/sys/dev/sbus/dma_sbus.c index 03fa7e2d1a3..6b0369dd658 100644 --- a/sys/dev/sbus/dma_sbus.c +++ b/sys/dev/sbus/dma_sbus.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dma_sbus.c,v 1.17 2017/09/08 05:36:52 deraadt Exp $ */ +/* $OpenBSD: dma_sbus.c,v 1.18 2022/03/13 13:34:54 mpi Exp $ */ /* $NetBSD: dma_sbus.c,v 1.5 2000/07/09 20:57:42 pk Exp $ */ /*- @@ -97,11 +97,11 @@ void *dmabus_intr_establish( static bus_space_tag_t dma_alloc_bustag(struct dma_softc *sc); -struct cfattach dma_sbus_ca = { +const struct cfattach dma_sbus_ca = { sizeof(struct dma_softc), dmamatch_sbus, dmaattach_sbus }; -struct cfattach ledma_ca = { +const struct cfattach ledma_ca = { sizeof(struct dma_softc), dmamatch_sbus, dmaattach_sbus }; |