summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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"))