diff options
author | Patrick Wildt <patrick@cvs.openbsd.org> | 2018-04-02 17:49:59 +0000 |
---|---|---|
committer | Patrick Wildt <patrick@cvs.openbsd.org> | 2018-04-02 17:49:59 +0000 |
commit | 0fc08d2515ec1c08c1af40bafa7a1dc615b22d72 (patch) | |
tree | 6ec0cf652639ae4f993fb6a78938dd07464844e8 | |
parent | 7d69fee4ed3e599a50717210ebaf240483d1a9a8 (diff) |
Attach imxiomuxc(4) to i.MX8M as well.
-rw-r--r-- | sys/dev/fdt/imxiomuxc.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/fdt/imxiomuxc.c b/sys/dev/fdt/imxiomuxc.c index 4cdc708b2ff..c7b5b373478 100644 --- a/sys/dev/fdt/imxiomuxc.c +++ b/sys/dev/fdt/imxiomuxc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: imxiomuxc.c,v 1.1 2018/04/02 17:45:38 patrick Exp $ */ +/* $OpenBSD: imxiomuxc.c,v 1.2 2018/04/02 17:49:58 patrick Exp $ */ /* * Copyright (c) 2013 Patrick Wildt <patrick@blueri.se> * Copyright (c) 2016 Mark Kettenis <kettenis@openbsd.org> @@ -68,7 +68,8 @@ imxiomuxc_match(struct device *parent, void *match, void *aux) OF_is_compatible(faa->fa_node, "fsl,imx6dl-iomuxc") || OF_is_compatible(faa->fa_node, "fsl,imx6sl-iomuxc") || OF_is_compatible(faa->fa_node, "fsl,imx6sx-iomuxc") || - OF_is_compatible(faa->fa_node, "fsl,imx6ul-iomuxc")); + OF_is_compatible(faa->fa_node, "fsl,imx6ul-iomuxc") || + OF_is_compatible(faa->fa_node, "fsl,imx8mq-iomuxc")); } void |