git: c87176dd16ab - stable/14 - fwget: pci_intel_video: do no log on no match
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 13 Jul 2025 19:31:01 UTC
The branch stable/14 has been updated by bz:
URL: https://cgit.FreeBSD.org/src/commit/?id=c87176dd16abdf3d957589eccf5c2864687e2674
commit c87176dd16abdf3d957589eccf5c2864687e2674
Author: Bjoern A. Zeeb <bz@FreeBSD.org>
AuthorDate: 2025-06-18 16:50:18 +0000
Commit: Bjoern A. Zeeb <bz@FreeBSD.org>
CommitDate: 2025-07-13 19:25:01 +0000
fwget: pci_intel_video: do no log on no match
We should never "log" a statement on no match for a given device we
do not know about. We do not control the PCI ID assignments and thus
cannot predict if we would even support such a device.
This also triggers an invalid output in the installer.
Leave it as log_verbose for now.
Sponsored by: The FreeBSD Foundation
PR: 287639
Reviewed by: manu, emaste
Differential Revision: https://reviews.freebsd.org/D50916
(cherry picked from commit f1f71cc717aa672caf046ffe1f3dd77e622b8b35)
---
usr.sbin/fwget/pci/pci_video_intel | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/usr.sbin/fwget/pci/pci_video_intel b/usr.sbin/fwget/pci/pci_video_intel
index 3824c4a49ffb..2f9012ed1f52 100644
--- a/usr.sbin/fwget/pci/pci_video_intel
+++ b/usr.sbin/fwget/pci/pci_video_intel
@@ -72,7 +72,7 @@ pci_video_intel()
addpkg "gpu-firmware-intel-kmod-alderlake gpu-firmware-intel-kmod-tigerlake"
;;
*)
- log "No package found for device $1"
+ log_verbose "No package found for device $1"
;;
esac
}