diff options
author | 2018-03-29 21:35:23 +0000 | |
---|---|---|
committer | 2018-03-29 21:35:23 +0000 | |
commit | 27fc0ab19c9f4b7839ca5e826d15460cf3c30f4c (patch) | |
tree | 7e3d26ffe24bb57fb62a4fbb560a75581dad0ea3 /sys | |
parent | Remove mention of link between message digests and public key algorithms. (diff) | |
download | wireguard-openbsd-27fc0ab19c9f4b7839ca5e826d15460cf3c30f4c.tar.xz wireguard-openbsd-27fc0ab19c9f4b7839ca5e826d15460cf3c30f4c.zip |
Call imxuart(4) early attach on arm64.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/arm64/arm64/machdep.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/arm64/arm64/machdep.c b/sys/arch/arm64/arm64/machdep.c index d45f6e18cf9..efb99c6e626 100644 --- a/sys/arch/arm64/arm64/machdep.c +++ b/sys/arch/arm64/arm64/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.30 2018/03/09 16:14:47 kettenis Exp $ */ +/* $OpenBSD: machdep.c,v 1.31 2018/03/29 21:35:23 patrick Exp $ */ /* * Copyright (c) 2014 Patrick Wildt <patrick@blueri.se> * @@ -197,6 +197,7 @@ fdt_find_cons(const char *name) } extern void com_fdt_init_cons(void); +extern void imxuart_init_cons(void); extern void pluart_init_cons(void); extern void simplefb_init_cons(bus_space_tag_t); @@ -211,6 +212,7 @@ consinit(void) consinit_called = 1; com_fdt_init_cons(); + imxuart_init_cons(); pluart_init_cons(); simplefb_init_cons(&arm64_bs_tag); } |