diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2023-02-16 03:09:34 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2023-02-16 03:09:34 +0000 |
commit | 6c9a00534e0507ee39f9e2472cbebae350dd2221 (patch) | |
tree | b62b66464d1c1af940ea9ba567cd071f4b688a52 /usr.sbin | |
parent | fbf78089619f0cfa728033649c39011b89520878 (diff) |
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@
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/fw_update/patterns.c | 4 |
1 files changed, 2 insertions, 2 deletions
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"); |