diff options
author | 2020-12-18 16:26:21 +0000 | |
---|---|---|
committer | 2020-12-18 16:26:21 +0000 | |
commit | dcf7f9181c71b94c9a133725fd83268824ff1a1f (patch) | |
tree | 5b91354b1ebcf20c0abf75aa117981aa003937e2 /sys/dev/fdt/imxgpc.c | |
parent | Add fd close notification for kqueue-based poll() and select() (diff) | |
download | wireguard-openbsd-dcf7f9181c71b94c9a133725fd83268824ff1a1f.tar.xz wireguard-openbsd-dcf7f9181c71b94c9a133725fd83268824ff1a1f.zip |
Attach imxgpc(4) to i.MX8MP as well.
Diffstat (limited to 'sys/dev/fdt/imxgpc.c')
-rw-r--r-- | sys/dev/fdt/imxgpc.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/fdt/imxgpc.c b/sys/dev/fdt/imxgpc.c index 87b2f6ae2f0..ce9e3974d61 100644 --- a/sys/dev/fdt/imxgpc.c +++ b/sys/dev/fdt/imxgpc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: imxgpc.c,v 1.8 2020/07/17 08:07:34 patrick Exp $ */ +/* $OpenBSD: imxgpc.c,v 1.9 2020/12/18 16:26:21 patrick Exp $ */ /* * Copyright (c) 2016 Mark Kettenis * @@ -59,6 +59,7 @@ imxgpc_match(struct device *parent, void *match, void *aux) return (OF_is_compatible(faa->fa_node, "fsl,imx6q-gpc") || OF_is_compatible(faa->fa_node, "fsl,imx7d-gpc") || OF_is_compatible(faa->fa_node, "fsl,imx8mm-gpc") || + OF_is_compatible(faa->fa_node, "fsl,imx8mp-gpc") || OF_is_compatible(faa->fa_node, "fsl,imx8mq-gpc")); } @@ -79,6 +80,7 @@ imxgpc_attach(struct device *parent, struct device *self, void *aux) printf("\n"); if (OF_is_compatible(faa->fa_node, "fsl,imx8mm-gpc") || + OF_is_compatible(faa->fa_node, "fsl,imx8mp-gpc") || OF_is_compatible(faa->fa_node, "fsl,imx8mq-gpc")) { list = OF_child(faa->fa_node); if (!list) |