diff options
author | 2017-01-21 09:40:15 +0000 | |
---|---|---|
committer | 2017-01-21 09:40:15 +0000 | |
commit | 28ef1138f98e4bb13c0fb9fb8610829544b974dc (patch) | |
tree | d8d13ce63498a6a4acba294b3e1e64545f2a7c42 | |
parent | Make explicit _ct and _nonct versions of bn_mod_exp funcitons that (diff) | |
download | wireguard-openbsd-28ef1138f98e4bb13c0fb9fb8610829544b974dc.tar.xz wireguard-openbsd-28ef1138f98e4bb13c0fb9fb8610829544b974dc.zip |
Add missing spl0() call.
-rw-r--r-- | sys/arch/arm64/arm64/autoconf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/arm64/arm64/autoconf.c b/sys/arch/arm64/arm64/autoconf.c index cd2c21c1508..96fe23613bc 100644 --- a/sys/arch/arm64/arm64/autoconf.c +++ b/sys/arch/arm64/arm64/autoconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: autoconf.c,v 1.1 2016/12/17 23:38:33 patrick Exp $ */ +/* $OpenBSD: autoconf.c,v 1.2 2017/01/21 09:40:15 patrick Exp $ */ /* * Copyright (c) 2009 Miodrag Vallat. * @@ -39,6 +39,7 @@ cpu_configure(void) (void)config_rootfound("mainbus", NULL); cold = 0; + spl0(); } void |