svn commit: r299259 - stable/10/sys/dev/mlx5/mlx5_en

Hans Petter Selasky hselasky at FreeBSD.org
Mon May 9 13:11:01 UTC 2016


Author: hselasky
Date: Mon May  9 13:11:00 2016
New Revision: 299259
URL: https://svnweb.freebsd.org/changeset/base/299259

Log:
  MFC r298772:
  Correct some error codes to native FreeBSD ones.
  
  Sponsored by:	Mellanox Technologies
  Tested by:	Netflix

Modified:
  stable/10/sys/dev/mlx5/mlx5_en/mlx5_en_main.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/dev/mlx5/mlx5_en/mlx5_en_main.c
==============================================================================
--- stable/10/sys/dev/mlx5/mlx5_en/mlx5_en_main.c	Mon May  9 13:09:41 2016	(r299258)
+++ stable/10/sys/dev/mlx5/mlx5_en/mlx5_en_main.c	Mon May  9 13:11:00 2016	(r299259)
@@ -2559,6 +2559,7 @@ out:
 		if (error) {
 			if_printf(ifp, "Query module num failed, eeprom "
 			    "reading is not supported\n");
+			error = EINVAL;
 			goto err_i2c;
 		}
 		/* Check if module is present before doing an access */
@@ -2588,6 +2589,7 @@ out:
 		if (error) {
 			if_printf(ifp, "Query eeprom failed, eeprom "
 			    "reading is not supported\n");
+			error = EINVAL;
 			goto err_i2c;
 		}
 
@@ -2601,6 +2603,7 @@ out:
 		if (error) {
 			if_printf(ifp, "Query eeprom failed, eeprom "
 			    "reading is not supported\n");
+			error = EINVAL;
 			goto err_i2c;
 		}
 


More information about the svn-src-all mailing list