From owner-cvs-all@FreeBSD.ORG Sat Dec 2 19:36:26 2006 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 5168D16A40F; Sat, 2 Dec 2006 19:36:26 +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 2908743CB1; Sat, 2 Dec 2006 19:36:04 +0000 (GMT) (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 kB2JaQbp023229; Sat, 2 Dec 2006 19:36:26 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id kB2JaQJm023228; Sat, 2 Dec 2006 19:36:26 GMT (envelope-from marius) Message-Id: <200612021936.kB2JaQJm023228@repoman.freebsd.org> From: Marius Strobl Date: Sat, 2 Dec 2006 19:36:25 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD 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: Sat, 02 Dec 2006 19:36:26 -0000 marius 2006-12-02 19:36:25 UTC FreeBSD src repository Modified files: sys/dev/mii brgphy.c ciphy.c mlphy.c rgephy.c tdkphy.c tlphy.c xmphy.c Log: 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 $Id$ in tdkphy(4). - Sort brgphys table. MFC after: 2 weeks Revision Changes Path 1.48 +22 -30 src/sys/dev/mii/brgphy.c 1.8 +2 -8 src/sys/dev/mii/ciphy.c 1.22 +6 -12 src/sys/dev/mii/mlphy.c 1.13 +9 -18 src/sys/dev/mii/rgephy.c 1.21 +1 -9 src/sys/dev/mii/tdkphy.c 1.22 +9 -10 src/sys/dev/mii/tlphy.c 1.21 +4 -7 src/sys/dev/mii/xmphy.c