From owner-cvs-src-old@FreeBSD.ORG Fri Nov 19 17:24:21 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EFDE8106564A for ; Fri, 19 Nov 2010 17:24:21 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id DE4F28FC0C for ; Fri, 19 Nov 2010 17:24:21 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id oAJHOLxW067560 for ; Fri, 19 Nov 2010 17:24:21 GMT (envelope-from marius@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id oAJHOLDH067559 for cvs-src-old@freebsd.org; Fri, 19 Nov 2010 17:24:21 GMT (envelope-from marius@repoman.freebsd.org) Message-Id: <201011191724.oAJHOLDH067559@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to marius@repoman.freebsd.org using -f From: Marius Strobl Date: Fri, 19 Nov 2010 17:24:03 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_7 Subject: cvs commit: src/sys/kern subr_bus.c src/sys/sys bus.h X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Nov 2010 17:24:22 -0000 marius 2010-11-19 17:24:03 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sys/kern subr_bus.c sys/sys bus.h Log: SVN rev 215537 on 2010-11-19 17:24:03Z by marius MFC: r176965 Any driver that relies on its parent to set the devclass has no way to know if has siblings that need an actual probe. Introduce a specail return value called BUS_PROBE_NOOWILDCARD. If the driver returns this, the probe is only successful for devices that have had a specific devclass set for them. Reviewed by: current@, jhb@, grehan@ Revision Changes Path 1.201.2.14 +8 -0 src/sys/kern/subr_bus.c 1.78.2.7 +5 -1 src/sys/sys/bus.h