Add missing return statement to rl_phy_writereg(). This bug didn't actually

hurt anything, but it's still a bug.

Pointed out by: Jason Wright <jason@thought.net>
This commit is contained in:
Bill Paul 1998-11-20 19:26:37 +00:00
parent 0e06fe21c6
commit 36c84dd2b3
1 changed files with 3 additions and 2 deletions

View File

@ -29,7 +29,7 @@
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*
* $Id: if_rl.c,v 1.14 1998/11/18 20:27:28 wpaul Exp $
* $Id: if_rl.c,v 1.2 1998/11/18 21:03:57 wpaul Exp $
*/
/*
@ -133,7 +133,7 @@
#ifndef lint
static char rcsid[] =
"$Id: if_rl.c,v 1.14 1998/11/18 20:27:28 wpaul Exp $";
"$Id: if_rl.c,v 1.2 1998/11/18 21:03:57 wpaul Exp $";
#endif
/*
@ -578,6 +578,7 @@ static void rl_phy_writereg(sc, reg, data)
return;
}
CSR_WRITE_2(sc, rl8139_reg, data);
return;
}
bzero((char *)&frame, sizeof(frame));