diff options
author | Patrick Wildt <patrick@cvs.openbsd.org> | 2017-01-21 09:40:16 +0000 |
---|---|---|
committer | Patrick Wildt <patrick@cvs.openbsd.org> | 2017-01-21 09:40:16 +0000 |
commit | 0de0f851acbf4fb39c4a14d6967e228b65d348a0 (patch) | |
tree | 9b17f3e2b98a6606b061248c61d831637b579017 | |
parent | d72a49db2abb4d0175558c0ed9cfe32bb823e995 (diff) |
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 |