diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2022-02-11 00:43:28 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2022-02-11 00:43:28 +0000 |
commit | f632d0ecacbac3f603c28ab104d4ee46c645d148 (patch) | |
tree | 59f9b8133a34053c12b5ce34564fd6302729a618 | |
parent | d852d768b0ba6bb0e33fd43b22ffa19abbacd942 (diff) |
sleep_cpu/resume_cpu are part of an earlier MI split attempt
noticed by kettenis
-rw-r--r-- | sys/arch/arm64/dev/apm.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/sys/arch/arm64/dev/apm.c b/sys/arch/arm64/dev/apm.c index c0a522d9223..b3fd675b3f1 100644 --- a/sys/arch/arm64/dev/apm.c +++ b/sys/arch/arm64/dev/apm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: apm.c,v 1.10 2022/02/10 06:52:13 deraadt Exp $ */ +/* $OpenBSD: apm.c,v 1.11 2022/02/11 00:43:27 deraadt Exp $ */ /*- * Copyright (c) 2001 Alexander Guy. All rights reserved. @@ -355,17 +355,6 @@ sleep_clocks(void *v) { } -int -sleep_cpu(void *v, int state) -{ - return 0; -} - -void -resume_cpu(void *sc, int state) -{ -} - #ifdef MULTIPROCESSOR void |