diff options
Diffstat (limited to 'sys/dev/i2c/pcf8523.c')
-rw-r--r-- | sys/dev/i2c/pcf8523.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/i2c/pcf8523.c b/sys/dev/i2c/pcf8523.c index 9576ebec492..a16047df867 100644 --- a/sys/dev/i2c/pcf8523.c +++ b/sys/dev/i2c/pcf8523.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pcf8523.c,v 1.6 2021/11/22 20:19:23 kettenis Exp $ */ +/* $OpenBSD: pcf8523.c,v 1.7 2022/04/06 18:59:28 naddy Exp $ */ /* * Copyright (c) 2005 Kimihiro Nonaka @@ -90,7 +90,7 @@ struct pcfrtc_softc { int pcfrtc_match(struct device *, void *, void *); void pcfrtc_attach(struct device *, struct device *, void *); -struct cfattach pcfrtc_ca = { +const struct cfattach pcfrtc_ca = { sizeof(struct pcfrtc_softc), pcfrtc_match, pcfrtc_attach }; |