From: drahn Date: Sun, 13 Jun 2021 02:56:48 +0000 (+0000) Subject: Match sifive,fu740-c000-gem so that device is detected on Unmatched. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=afd483c33e3688198338bbb87c3a6d31f0384d4e;p=openbsd Match sifive,fu740-c000-gem so that device is detected on Unmatched. pointed out by jsg@ --- diff --git a/sys/dev/fdt/if_cad.c b/sys/dev/fdt/if_cad.c index 49757098bfc..d8cbb706d4a 100644 --- a/sys/dev/fdt/if_cad.c +++ b/sys/dev/fdt/if_cad.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_cad.c,v 1.1 2021/05/28 15:52:11 visa Exp $ */ +/* $OpenBSD: if_cad.c,v 1.2 2021/06/13 02:56:48 drahn Exp $ */ /* * Copyright (c) 2021 Visa Hankala @@ -345,7 +345,8 @@ cad_match(struct device *parent, void *match, void *aux) { struct fdt_attach_args *faa = aux; - return OF_is_compatible(faa->fa_node, "cdns,gem"); + return (OF_is_compatible(faa->fa_node, "cdns,gem") || + OF_is_compatible(faa->fa_node, "sifive,fu740-c000-gem")); } void