From 9036736c9015af1d53e21989c479344e37984501 Mon Sep 17 00:00:00 2001 From: kettenis Date: Sat, 27 Aug 2016 16:40:31 +0000 Subject: [PATCH] Match on "allwinner,sun8i-h3-ehci". --- sys/arch/armv7/sunxi/sxiehci.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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; } -- 2.20.1