Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 26 May 2014 12:29:32 GMT
From:      op@FreeBSD.org
To:        svn-soc-all@FreeBSD.org
Subject:   socsvn commit: r268631 - in soc2014/op/freebsd-base: . sys sys/dev/e1000
Message-ID:  <201405261229.s4QCTWeR081925@socsvn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: op
Date: Mon May 26 12:29:32 2014
New Revision: 268631
URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=268631

Log:
  MFH: updated to recent FreeBSD head
  
  Signed-off-by: Oliver Pinter <oliver.pntr@gmail.com>
  
  

Modified:
  soc2014/op/freebsd-base/   (props changed)
  soc2014/op/freebsd-base/sys/   (props changed)
  soc2014/op/freebsd-base/sys/dev/e1000/e1000_phy.c

Modified: soc2014/op/freebsd-base/sys/dev/e1000/e1000_phy.c
==============================================================================
--- soc2014/op/freebsd-base/sys/dev/e1000/e1000_phy.c	Mon May 26 11:16:28 2014	(r268630)
+++ soc2014/op/freebsd-base/sys/dev/e1000/e1000_phy.c	Mon May 26 12:29:32 2014	(r268631)
@@ -4157,12 +4157,13 @@
 	*data = E1000_READ_REG(hw, E1000_MPHY_DATA);
 
 	/* Disable access to mPHY if it was originally disabled */
-	if (locked)
+	if (locked) {
 		ready = e1000_is_mphy_ready(hw);
 		if (!ready)
 			return -E1000_ERR_PHY;
 		E1000_WRITE_REG(hw, E1000_MPHY_ADDR_CTRL,
 				E1000_MPHY_DIS_ACCESS);
+	}
 
 	return E1000_SUCCESS;
 }
@@ -4222,12 +4223,13 @@
 	E1000_WRITE_REG(hw, E1000_MPHY_DATA, data);
 
 	/* Disable access to mPHY if it was originally disabled */
-	if (locked)
+	if (locked) {
 		ready = e1000_is_mphy_ready(hw);
 		if (!ready)
 			return -E1000_ERR_PHY;
 		E1000_WRITE_REG(hw, E1000_MPHY_ADDR_CTRL,
 				E1000_MPHY_DIS_ACCESS);
+	}
 
 	return E1000_SUCCESS;
 }



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201405261229.s4QCTWeR081925>