From owner-cvs-src@FreeBSD.ORG Wed Sep 3 18:41:07 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 B910316A4BF; Wed, 3 Sep 2003 18:41:07 -0700 (PDT) Received: from harmony.village.org (rover.bsdimp.com [204.144.255.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 67CFA43FEA; Wed, 3 Sep 2003 18:41:06 -0700 (PDT) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.9/8.12.3) with ESMTP id h841f5TX053216; Wed, 3 Sep 2003 19:41:05 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Wed, 03 Sep 2003 19:40:45 -0600 (MDT) Message-Id: <20030903.194045.71089689.imp@bsdimp.com> To: phk@FreeBSD.org From: "M. Warner Losh" In-Reply-To: <200309030740.h837e4qS056204@repoman.freebsd.org> References: <200309030740.h837e4qS056204@repoman.freebsd.org> X-Mailer: Mew version 2.1 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/pci if_sis.c if_sisreg.h 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, 04 Sep 2003 01:41:07 -0000 In message: <200309030740.h837e4qS056204@repoman.freebsd.org> Poul-Henning Kamp writes: : We can't update the device description in attach (why not ?), so : we device_print() what we find. You can. However, we use the description after PROBE, and changing it in attach doesn't cause us to go back and unprint it, so it does little good. We could fix this, and the resource allocation issues, by printing things after a successful attach, but that would likely confuse people. Warner