From: kn Date: Thu, 30 Mar 2023 20:07:49 +0000 (+0000) Subject: keep match strings sorted X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=08f55413cf06ab881ea29b459dd5e82c48ade2ab;p=openbsd keep match strings sorted --- diff --git a/sys/dev/fdt/dwpcie.c b/sys/dev/fdt/dwpcie.c index 90f2c4d4c94..d8394067cd3 100644 --- a/sys/dev/fdt/dwpcie.c +++ b/sys/dev/fdt/dwpcie.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dwpcie.c,v 1.42 2023/03/30 20:03:32 kn Exp $ */ +/* $OpenBSD: dwpcie.c,v 1.43 2023/03/30 20:07:49 kn Exp $ */ /* * Copyright (c) 2018 Mark Kettenis * @@ -291,8 +291,8 @@ dwpcie_match(struct device *parent, void *match, void *aux) { struct fdt_attach_args *faa = aux; - return (OF_is_compatible(faa->fa_node, "baikal,bm1000-pcie") || - OF_is_compatible(faa->fa_node, "amlogic,g12a-pcie") || + return (OF_is_compatible(faa->fa_node, "amlogic,g12a-pcie") || + OF_is_compatible(faa->fa_node, "baikal,bm1000-pcie") || OF_is_compatible(faa->fa_node, "fsl,imx8mm-pcie") || OF_is_compatible(faa->fa_node, "fsl,imx8mq-pcie") || OF_is_compatible(faa->fa_node, "marvell,armada8k-pcie") ||