diff options
author | Patrick Wildt <patrick@cvs.openbsd.org> | 2017-01-21 05:19:54 +0000 |
---|---|---|
committer | Patrick Wildt <patrick@cvs.openbsd.org> | 2017-01-21 05:19:54 +0000 |
commit | 8e43abe6e49609472670cf412b0acab2b3c4637e (patch) | |
tree | 5876f6788c69faf1d48b2f1d641cd828ef6769ae /sys | |
parent | 92fa7d6486837f2a03391e450e47bc3ce9d27f8e (diff) |
Match on the Allwinner A64 ehci compatible as well.
ok kettenis@ phessler@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/armv7/sunxi/sxiehci.c | 4 |
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")) |