diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2024-09-29 09:25:38 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2024-09-29 09:25:38 +0000 |
commit | 90e58a73ce004ee35cf06ee3863aa3c283bad3c4 (patch) | |
tree | bbb0ccf75fac0053029d5689e01234d944b5c02e /sys/arch | |
parent | d564ad00d13e51cb8b8d8760f3bba3a37f98dde5 (diff) |
correct a prototype
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/arm64/dev/aplcpu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/arm64/dev/aplcpu.c b/sys/arch/arm64/dev/aplcpu.c index 3f3d69fcd1b..b537f76bf2f 100644 --- a/sys/arch/arm64/dev/aplcpu.c +++ b/sys/arch/arm64/dev/aplcpu.c @@ -1,4 +1,4 @@ -/* $OpenBSD: aplcpu.c,v 1.8 2023/07/13 08:33:36 kettenis Exp $ */ +/* $OpenBSD: aplcpu.c,v 1.9 2024/09/29 09:25:37 jsg Exp $ */ /* * Copyright (c) 2022 Mark Kettenis <kettenis@openbsd.org> * @@ -99,7 +99,7 @@ uint32_t aplcpu_opp_level(struct aplcpu_softc *, int); int aplcpu_clockspeed(int *); void aplcpu_setperf(int level); void aplcpu_refresh_sensors(void *); -void aplcpu_idle_cycle(); +void aplcpu_idle_cycle(void); void aplcpu_deep_wfi(void); int |