From: jsg Date: Thu, 16 Feb 2023 03:09:33 +0000 (+0000) Subject: remove the '(R)' from the intel cpu match pattern X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=758379565276d84eb8a8b16e1a3121210878eae7;p=openbsd remove the '(R)' from the intel cpu match pattern Intel(R) does not appear in cpu0: Intel Atom(R) x6425RE Processor @ 1.90GHz, 1895.90 MHz, 06-96-01 reported by patrick@ ok deraadt@ --- diff --git a/usr.sbin/fw_update/patterns.c b/usr.sbin/fw_update/patterns.c index 3d304570711..f5f30c4be44 100644 --- a/usr.sbin/fw_update/patterns.c +++ b/usr.sbin/fw_update/patterns.c @@ -1,4 +1,4 @@ -/* $OpenBSD: patterns.c,v 1.7 2023/01/24 01:40:22 jsg Exp $ */ +/* $OpenBSD: patterns.c,v 1.8 2023/02/16 03:09:33 jsg Exp $ */ /* * Copyright (c) 1995, 1996 Christopher G. Demetriou. All rights reserved. @@ -98,7 +98,7 @@ main(void) printf("%s\n", "bwfm"); printf("%s\n", "bwi"); printf("%s\n", "intel"); - printf("%s\n", "intel ^cpu0:*Intel(R)"); + printf("%s\n", "intel ^cpu0:*Intel"); printf("%s\n", "inteldrm"); print_devices("inteldrm", i915_devices, nitems(i915_devices)); printf("%s\n", "ipw");