From: kettenis Date: Sat, 27 Aug 2016 16:40:31 +0000 (+0000) Subject: Match on "allwinner,sun8i-h3-ehci". X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=9036736c9015af1d53e21989c479344e37984501;p=openbsd Match on "allwinner,sun8i-h3-ehci". --- diff --git a/sys/arch/armv7/sunxi/sxiehci.c b/sys/arch/armv7/sunxi/sxiehci.c index 7a77d0dd070..3bc90ed94e1 100644 --- a/sys/arch/armv7/sunxi/sxiehci.c +++ b/sys/arch/armv7/sunxi/sxiehci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sxiehci.c,v 1.8 2016/08/23 21:43:51 kettenis Exp $ */ +/* $OpenBSD: sxiehci.c,v 1.9 2016/08/27 16:40:31 kettenis Exp $ */ /* * Copyright (c) 2005 David Gwynne @@ -104,6 +104,8 @@ sxiehci_match(struct device *parent, void *match, void *aux) 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")) + return 1; return 0; }