summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorJonathan Matthew <jmatthew@cvs.openbsd.org>2020-09-04 01:10:30 +0000
committerJonathan Matthew <jmatthew@cvs.openbsd.org>2020-09-04 01:10:30 +0000
commit5e08336c90f4510c538c6198bc2ab64f701d9dfd (patch)
tree529d8cce99b2b7f4e0f11935e239d01d2363aa56 /sys/dev
parent98b143791729f70e6115ce14146b19285ece2a27 (diff)
Add RK3308 GRF
ok kettenis@
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/fdt/rkgrf.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/fdt/rkgrf.c b/sys/dev/fdt/rkgrf.c
index 76946e59369..48085f092de 100644
--- a/sys/dev/fdt/rkgrf.c
+++ b/sys/dev/fdt/rkgrf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: rkgrf.c,v 1.3 2019/11/29 21:59:55 patrick Exp $ */
+/* $OpenBSD: rkgrf.c,v 1.4 2020/09/04 01:10:29 jmatthew Exp $ */
/*
* Copyright (c) 2017 Mark Kettenis <kettenis@openbsd.org>
*
@@ -58,6 +58,7 @@ rkgrf_match(struct device *parent, void *match, void *aux)
return (OF_is_compatible(faa->fa_node, "rockchip,rk3288-grf") ||
OF_is_compatible(faa->fa_node, "rockchip,rk3288-pmu") ||
OF_is_compatible(faa->fa_node, "rockchip,rk3288-sgrf") ||
+ OF_is_compatible(faa->fa_node, "rockchip,rk3308-grf") ||
OF_is_compatible(faa->fa_node, "rockchip,rk3399-grf") ||
OF_is_compatible(faa->fa_node, "rockchip,rk3399-pmugrf"));
}