Module Name: src
Committed By: msaitoh
Date: Fri Oct 28 01:10:41 UTC 2022
Modified Files:
src/sys/dev/pci/ixgbe: ixgbe.c
Log Message:
Make three "Unsupported SFP+ module..." messages the same.
To generate a diff of this commit:
cvs rdiff -u -r1.323 -r1.324 src/sys/dev/pci/ixgbe/ixgbe.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/dev/pci/ixgbe/ixgbe.c
diff -u src/sys/dev/pci/ixgbe/ixgbe.c:1.323 src/sys/dev/pci/ixgbe/ixgbe.c:1.324
--- src/sys/dev/pci/ixgbe/ixgbe.c:1.323 Wed Jul 6 06:31:47 2022
+++ src/sys/dev/pci/ixgbe/ixgbe.c Fri Oct 28 01:10:41 2022
@@ -1,4 +1,4 @@
-/* $NetBSD: ixgbe.c,v 1.323 2022/07/06 06:31:47 msaitoh Exp $ */
+/* $NetBSD: ixgbe.c,v 1.324 2022/10/28 01:10:41 msaitoh Exp $ */
/******************************************************************************
@@ -64,7 +64,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ixgbe.c,v 1.323 2022/07/06 06:31:47 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ixgbe.c,v 1.324 2022/10/28 01:10:41 msaitoh Exp $");
#ifdef _KERNEL_OPT
#include "opt_inet.h"
@@ -1001,7 +1001,8 @@ ixgbe_attach(device_t parent, device_t d
if (error == IXGBE_ERR_SFP_NOT_PRESENT)
error = IXGBE_SUCCESS;
else if (error == IXGBE_ERR_SFP_NOT_SUPPORTED) {
- aprint_error_dev(dev, "Unsupported SFP+ module detected!\n");
+ aprint_error_dev(dev,
+ "Unsupported SFP+ module type was detected.\n");
unsupported_sfp = true;
error = IXGBE_SUCCESS;
} else if (error) {