Remove stray argument name in function prototype.
authorkettenis <kettenis@openbsd.org>
Sat, 15 Jul 2023 19:21:47 +0000 (19:21 +0000)
committerkettenis <kettenis@openbsd.org>
Sat, 15 Jul 2023 19:21:47 +0000 (19:21 +0000)
sys/arch/arm64/dev/aplpmgr.c

index 2525a44..86a4f89 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: aplpmgr.c,v 1.3 2022/11/10 11:44:06 kettenis Exp $    */
+/*     $OpenBSD: aplpmgr.c,v 1.4 2023/07/15 19:21:47 kettenis Exp $    */
 /*
  * Copyright (c) 2021 Mark Kettenis <kettenis@openbsd.org>
  *
@@ -66,7 +66,7 @@ struct aplpmgr_softc {
 
 int    aplpmgr_match(struct device *, void *, void *);
 void   aplpmgr_attach(struct device *, struct device *, void *);
-int    aplpmgr_activate(struct device *, int act);
+int    aplpmgr_activate(struct device *, int);
 
 const struct cfattach aplpmgr_ca = {
        sizeof (struct aplpmgr_softc), aplpmgr_match, aplpmgr_attach