From owner-cvs-all@FreeBSD.ORG Sun Feb 6 21:03:14 2005 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0BCCA16A4CE; Sun, 6 Feb 2005 21:03:14 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B6D2943D53; Sun, 6 Feb 2005 21:03:13 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j16L3Dp6048930; Sun, 6 Feb 2005 21:03:13 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j16L3DSs048929; Sun, 6 Feb 2005 21:03:13 GMT (envelope-from imp) Message-Id: <200502062103.j16L3DSs048929@repoman.freebsd.org> From: Warner Losh Date: Sun, 6 Feb 2005 21:03:13 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/cardbus cardbus.c cardbus_cis.c cardbus_cis.h cardbusvar.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 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, 06 Feb 2005 21:03:14 -0000 imp 2005-02-06 21:03:13 UTC FreeBSD src repository Modified files: sys/dev/cardbus cardbus.c cardbus_cis.c cardbus_cis.h cardbusvar.h Log: Move resource allocation routines from cardbus_cis.c to cardbus.c. They have nothing at all to do with CIS parsing. Remove some unused funce parsing: nothing used the results. Use more of pccard_cis.h's deifnitions for the cardbus specific cis parsing we do. More work is needed in this area. This reduces the size of the cardbus module by 380 bytes or so... Revision Changes Path 1.47 +299 -10 src/sys/dev/cardbus/cardbus.c 1.49 +3 -315 src/sys/dev/cardbus/cardbus_cis.c 1.13 +1 -22 src/sys/dev/cardbus/cardbus_cis.h 1.11 +0 -7 src/sys/dev/cardbus/cardbusvar.h