From owner-cvs-src@FreeBSD.ORG Sun Dec 10 03:41:49 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 101A716A47B; Sun, 10 Dec 2006 03:41:49 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2786B43CA1; Sun, 10 Dec 2006 03:40:41 +0000 (GMT) (envelope-from mjacob@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 kBA3fmY9058510; Sun, 10 Dec 2006 03:41:48 GMT (envelope-from mjacob@repoman.freebsd.org) Received: (from mjacob@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id kBA3fmVo058509; Sun, 10 Dec 2006 03:41:48 GMT (envelope-from mjacob) Message-Id: <200612100341.kBA3fmVo058509@repoman.freebsd.org> From: Matt Jacob Date: Sun, 10 Dec 2006 03:41:48 +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/isp isp_pci.c isp_sbus.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Dec 2006 03:41:49 -0000 mjacob 2006-12-10 03:41:48 UTC FreeBSD src repository Modified files: sys/dev/isp isp_pci.c isp_sbus.c Log: Remove dependency on ispfw and firmware as modules. Either they're there early and the ispfw sets have registered themselves, or they're not. The module dependency stuff isn't quite what we want anyway. If the user doesn't want the load placed on system memory by loading the firmware, they don't specify it to be loaded (either by being linked in or via being a module to be loaded and then hooked in with firmware(9)). It doesn't then make sense to then override what they want by pulling it in anyway. This might be able to work if we were able to pull in just exactly what we needed for the card we have- but that's an optimization left for the future. Revision Changes Path 1.128 +1 -4 src/sys/dev/isp/isp_pci.c 1.24 +1 -3 src/sys/dev/isp/isp_sbus.c