From owner-cvs-src@FreeBSD.ORG Fri Jun 30 06:27:25 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org 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 30C0C16A667; Fri, 30 Jun 2006 06:27:25 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E180943D45; Fri, 30 Jun 2006 06:27:24 +0000 (GMT) (envelope-from imp@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 k5U6ROnw098620; Fri, 30 Jun 2006 06:27:24 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k5U6ROq4098619; Fri, 30 Jun 2006 06:27:24 GMT (envelope-from imp) Message-Id: <200606300627.k5U6ROq4098619@repoman.freebsd.org> From: Warner Losh Date: Fri, 30 Jun 2006 06:27:24 +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/sio sio.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: Fri, 30 Jun 2006 06:27:25 -0000 imp 2006-06-30 06:27:24 UTC FreeBSD src repository Modified files: sys/dev/sio sio.c Log: Have sio return BIS_PROBE_DEFAULT like all the other drivers in the tree... John Baldwin noted that sio might pass values between probe and attach via softc. It appears that sio does leave the hardware in a known state after probing, so other drivers that try to probe might leave it in a worse state. It doesn't seem to pass any data in softc, however, that I could find... I think we should not be probing for anything but nonPnP isa, but that's a change for another day. Submitted by: Frank Behrens PR: 87845 Revision Changes Path 1.468 +2 -2 src/sys/dev/sio/sio.c