From owner-cvs-src-old@FreeBSD.ORG Wed Apr 21 00:22:35 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4A9CC106566B for ; Wed, 21 Apr 2010 00:22:35 +0000 (UTC) (envelope-from weongyo@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 374E18FC1F for ; Wed, 21 Apr 2010 00:22:35 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id o3L0MZjd004813 for ; Wed, 21 Apr 2010 00:22:35 GMT (envelope-from weongyo@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o3L0MZxd004812 for cvs-src-old@freebsd.org; Wed, 21 Apr 2010 00:22:35 GMT (envelope-from weongyo@repoman.freebsd.org) Message-Id: <201004210022.o3L0MZxd004812@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to weongyo@repoman.freebsd.org using -f From: Weongyo Jeong Date: Wed, 21 Apr 2010 00:22:16 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/sys/dev/bwn if_bwn.c if_bwnvar.h src/sys/dev/siba siba.c siba_bwn.c siba_cc.c siba_core.c siba_pcib.c sibavar.h X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Apr 2010 00:22:35 -0000 weongyo 2010-04-21 00:22:16 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) sys/dev/bwn if_bwn.c if_bwnvar.h sys/dev/siba siba.c siba_bwn.c siba_cc.c siba_core.c siba_pcib.c sibavar.h Log: SVN rev 206969 on 2010-04-21 00:22:16Z by weongyo MFC r205003: Revert r204992 and just wrap it all in ifdef INVARIANTS to fix the debug and non-debug cases MFC r204992: fixes a compile error if INVARIANTS is disabled. Pointy hat to: me Submitted by: Michael Butler MFC r204983: Fix build breakage introduced in r204922. MFC r204923: uses KOBJMETHOD_END macro to indicate the end of method table. Submitted by: yongari MFC r204922: o uses bus accessor macros to read values from ivar so no more values are referenced directly from ivar pointer. It's to do like what other buses do. [1] o changes exported prototypes. It doesn't use struct siba_* structures anymore that instead of it it uses only device_t. o removes duplicate code and debug messages. o style(9) Pointed out by: imp [1] Revision Changes Path 1.15.2.12 +341 -391 src/sys/dev/bwn/if_bwn.c 1.4.2.4 +9 -9 src/sys/dev/bwn/if_bwnvar.h 1.1.2.3 +1 -1 src/sys/dev/siba/siba.c 1.4.2.4 +68 -1 src/sys/dev/siba/siba_bwn.c 1.3.2.4 +1 -1 src/sys/dev/siba/siba_cc.c 1.6.2.5 +576 -79 src/sys/dev/siba/siba_core.c 1.2.2.3 +1 -1 src/sys/dev/siba/siba_pcib.c 1.1.2.4 +205 -41 src/sys/dev/siba/sibavar.h