From owner-cvs-src@FreeBSD.ORG Thu Jul 3 07:00:58 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6694237B401; Thu, 3 Jul 2003 07:00:58 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A03A43FE5; Thu, 3 Jul 2003 07:00:58 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h63E0v0U067086; Thu, 3 Jul 2003 07:00:57 -0700 (PDT) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h63E0vim067078; Thu, 3 Jul 2003 07:00:57 -0700 (PDT) Message-Id: <200307031400.h63E0vim067078@repoman.freebsd.org> From: Warner Losh Date: Thu, 3 Jul 2003 07:00:57 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/firewire fwohci_pci.c src/sys/dev/fxp if_fxp.c src/sys/dev/lge if_lge.c src/sys/dev/nge if_nge.c src/sys/dev/pccbb pccbb.c src/sys/dev/txp if_txp.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 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: Thu, 03 Jul 2003 14:00:58 -0000 imp 2003/07/03 07:00:57 PDT FreeBSD src repository Modified files: sys/dev/firewire fwohci_pci.c sys/dev/fxp if_fxp.c sys/dev/lge if_lge.c sys/dev/nge if_nge.c sys/dev/pccbb pccbb.c sys/dev/txp if_txp.c Log: All current uses of pci_set_powerstate are bogus, at least in theory. However, they are presently necessary due to bigger bogusness in the pci bus layer not doing the right thing on suspend/resume or on initial device probe. This is exactly the sort of thing that the BURN_BRIDGES option was invented for. Mark all of them as BURN_BRIDGES. As soon as I have the powerstate stuff properly integrated into the pci bus code, I intend to remove all these workarounds. Revision Changes Path 1.28 +2 -0 src/sys/dev/firewire/fwohci_pci.c 1.186 +8 -4 src/sys/dev/fxp/if_fxp.c 1.21 +2 -2 src/sys/dev/lge/if_lge.c 1.46 +2 -2 src/sys/dev/nge/if_nge.c 1.79 +3 -2 src/sys/dev/pccbb/pccbb.c 1.18 +2 -2 src/sys/dev/txp/if_txp.c