From owner-cvs-all@FreeBSD.ORG Sun Feb 25 17:57:12 2007 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C955716A401; Sun, 25 Feb 2007 17:57:12 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id B925F13C467; Sun, 25 Feb 2007 17:57:12 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l1PHvCbA003220; Sun, 25 Feb 2007 17:57:12 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l1PHvC5I003219; Sun, 25 Feb 2007 17:57:12 GMT (envelope-from marius) Message-Id: <200702251757.l1PHvC5I003219@repoman.freebsd.org> From: Marius Strobl Date: Sun, 25 Feb 2007 17:57:12 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/dev/mii brgphy.c ciphy.c mlphy.c rgephy.c tdkphy.c tlphy.c xmphy.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Feb 2007 17:57:12 -0000 marius 2007-02-25 17:57:12 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/mii brgphy.c ciphy.c mlphy.c rgephy.c tdkphy.c tlphy.c xmphy.c Log: MFC: brgphy.c 1.48; ciphy.c 1.6, 1.8; mlphy.c 1.22; rgephy.c 1.13; tdkphy.c 1.21; tlphy.c 1.22; xmphy.c 1.21 Some style changes to a couple of PHY drivers: - Fix some whitespace nits. - Fix some spelling in comments. - Use MII_ANEGTICKS instead of 5. - Don't define variables in nested scope. - Remove superfluous returns at the end of void functions. - Remove unused static global rgephy_mii_model. - Remove dupe $FreeBSD$ in ciphy(4) and dupe $Id$ in tdkphy(4). - Sort brgphys table. Revision Changes Path 1.34.2.10 +22 -29 src/sys/dev/mii/brgphy.c 1.2.2.4 +6 -13 src/sys/dev/mii/ciphy.c 1.20.2.2 +6 -12 src/sys/dev/mii/mlphy.c 1.6.2.6 +9 -16 src/sys/dev/mii/rgephy.c 1.16.2.3 +1 -9 src/sys/dev/mii/tdkphy.c 1.18.2.4 +9 -10 src/sys/dev/mii/tlphy.c 1.17.2.4 +4 -7 src/sys/dev/mii/xmphy.c