diff options
-rw-r--r-- | sys/dev/usb/uhub.c | 14 | ||||
-rw-r--r-- | sys/kern/kern_clock.c | 4 |
2 files changed, 9 insertions, 9 deletions
diff --git a/sys/dev/usb/uhub.c b/sys/dev/usb/uhub.c index 598f7ec5316..a301eb509a4 100644 --- a/sys/dev/usb/uhub.c +++ b/sys/dev/usb/uhub.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uhub.c,v 1.95 2020/07/31 10:49:33 mglocker Exp $ */ +/* $OpenBSD: uhub.c,v 1.96 2022/07/10 20:15:31 mlarkin Exp $ */ /* $NetBSD: uhub.c,v 1.64 2003/02/08 03:32:51 ichiro Exp $ */ /* $FreeBSD: src/sys/dev/usb/uhub.c,v 1.18 1999/11/17 22:33:43 n_hibma Exp $ */ @@ -80,13 +80,13 @@ int uhub_port_connect(struct uhub_softc *, int, int); * Every other driver only connects to hubs */ -int uhub_match(struct device *, void *, void *); -void uhub_attach(struct device *, struct device *, void *); -int uhub_detach(struct device *, int); +int uhub_match(struct device *, void *, void *); +void uhub_attach(struct device *, struct device *, void *); +int uhub_detach(struct device *, int); -struct cfdriver uhub_cd = { - NULL, "uhub", DV_DULL -}; +struct cfdriver uhub_cd = { + NULL, "uhub", DV_DULL +}; const struct cfattach uhub_ca = { sizeof(struct uhub_softc), uhub_match, uhub_attach, uhub_detach diff --git a/sys/kern/kern_clock.c b/sys/kern/kern_clock.c index b45675c82a0..0d8e194e135 100644 --- a/sys/kern/kern_clock.c +++ b/sys/kern/kern_clock.c @@ -1,4 +1,4 @@ -/* $OpenBSD: kern_clock.c,v 1.103 2022/02/16 08:01:32 jsg Exp $ */ +/* $OpenBSD: kern_clock.c,v 1.104 2022/07/10 20:16:15 mlarkin Exp $ */ /* $NetBSD: kern_clock.c,v 1.34 1996/06/09 04:51:03 briggs Exp $ */ /*- @@ -324,7 +324,7 @@ statclock(struct clockframe *frame) if (psdiv == 1) { setstatclockrate(stathz); } else { - setstatclockrate(profhz); + setstatclockrate(profhz); } } |