summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpatrick <patrick@openbsd.org>2017-01-21 05:19:53 +0000
committerpatrick <patrick@openbsd.org>2017-01-21 05:19:53 +0000
commit85e285e06ac6f58bb9b114832a8b9e633a727741 (patch)
treec30c0a7f1ce0c4ede8777c0f5797ff0d419a0eb9
parentImplement EHCI and MMC clock support for the Allwinner A64 SoC. (diff)
downloadwireguard-openbsd-85e285e06ac6f58bb9b114832a8b9e633a727741.tar.xz
wireguard-openbsd-85e285e06ac6f58bb9b114832a8b9e633a727741.zip
Match on the Allwinner A64 ehci compatible as well.
ok kettenis@ phessler@
-rw-r--r--sys/arch/armv7/sunxi/sxiehci.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/armv7/sunxi/sxiehci.c b/sys/arch/armv7/sunxi/sxiehci.c
index 1b266853bf7..e552fc840e2 100644
--- a/sys/arch/armv7/sunxi/sxiehci.c
+++ b/sys/arch/armv7/sunxi/sxiehci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sxiehci.c,v 1.10 2016/11/22 11:03:08 kettenis Exp $ */
+/* $OpenBSD: sxiehci.c,v 1.11 2017/01/21 05:19:53 patrick Exp $ */
/*
* Copyright (c) 2005 David Gwynne <dlg@openbsd.org>
@@ -104,6 +104,8 @@ sxiehci_match(struct device *parent, void *match, void *aux)
return 1;
if (OF_is_compatible(faa->fa_node, "allwinner,sun5i-a13-ehci"))
return 1;
+ if (OF_is_compatible(faa->fa_node, "allwinner,sun50i-a64-ehci"))
+ return 1;
if (OF_is_compatible(faa->fa_node, "allwinner,sun7i-a20-ehci"))
return 1;
if (OF_is_compatible(faa->fa_node, "allwinner,sun8i-h3-ehci"))