Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/pci/ixgbe Make three "Unsupported SFP+ module..." me...



details:   https://anonhg.NetBSD.org/src/rev/fbd450d607b6
branches:  trunk
changeset: 372127:fbd450d607b6
user:      msaitoh <msaitoh%NetBSD.org@localhost>
date:      Fri Oct 28 01:10:41 2022 +0000

description:
Make three "Unsupported SFP+ module..." messages the same.

diffstat:

 sys/dev/pci/ixgbe/ixgbe.c |  7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diffs (28 lines):

diff -r e35e6fbbf1d9 -r fbd450d607b6 sys/dev/pci/ixgbe/ixgbe.c
--- a/sys/dev/pci/ixgbe/ixgbe.c Thu Oct 27 22:35:31 2022 +0000
+++ b/sys/dev/pci/ixgbe/ixgbe.c Fri Oct 28 01:10:41 2022 +0000
@@ -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 @@
        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) {



Home | Main Index | Thread Index | Old Index