From owner-svn-src-all@FreeBSD.ORG Tue Oct 29 13:48:43 2013 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 3FCD4DFB; Tue, 29 Oct 2013 13:48:43 +0000 (UTC) (envelope-from nwhitehorn@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 126FF2840; Tue, 29 Oct 2013 13:48:43 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9TDmgEX082698; Tue, 29 Oct 2013 13:48:42 GMT (envelope-from nwhitehorn@svn.freebsd.org) Received: (from nwhitehorn@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9TDmgQP082693; Tue, 29 Oct 2013 13:48:42 GMT (envelope-from nwhitehorn@svn.freebsd.org) Message-Id: <201310291348.r9TDmgQP082693@svn.freebsd.org> From: Nathan Whitehorn Date: Tue, 29 Oct 2013 13:48:42 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r257336 - in head/sys/dev/altera: atse avgen jtag_uart sdcard X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Oct 2013 13:48:43 -0000 Author: nwhitehorn Date: Tue Oct 29 13:48:41 2013 New Revision: 257336 URL: http://svnweb.freebsd.org/changeset/base/257336 Log: These nexus attachments do not execute a real probe and so need BUS_PROBE_NOWILDCARD set. Modified: head/sys/dev/altera/atse/if_atse_nexus.c head/sys/dev/altera/avgen/altera_avgen_nexus.c head/sys/dev/altera/jtag_uart/altera_jtag_uart_nexus.c head/sys/dev/altera/sdcard/altera_sdcard_nexus.c Modified: head/sys/dev/altera/atse/if_atse_nexus.c ============================================================================== --- head/sys/dev/altera/atse/if_atse_nexus.c Tue Oct 29 13:44:19 2013 (r257335) +++ head/sys/dev/altera/atse/if_atse_nexus.c Tue Oct 29 13:48:41 2013 (r257336) @@ -130,7 +130,7 @@ atse_probe_nexus(device_t dev) /* Success. */ device_set_desc(dev, "Altera Triple-Speed Ethernet MegaCore"); - return (BUS_PROBE_DEFAULT); + return (BUS_PROBE_NOWILDCARD); } static int Modified: head/sys/dev/altera/avgen/altera_avgen_nexus.c ============================================================================== --- head/sys/dev/altera/avgen/altera_avgen_nexus.c Tue Oct 29 13:44:19 2013 (r257335) +++ head/sys/dev/altera/avgen/altera_avgen_nexus.c Tue Oct 29 13:48:41 2013 (r257336) @@ -58,7 +58,7 @@ altera_avgen_nexus_probe(device_t dev) { device_set_desc(dev, "Generic Altera Avalon device attachment"); - return (BUS_PROBE_DEFAULT); + return (BUS_PROBE_NOWILDCARD); } static int Modified: head/sys/dev/altera/jtag_uart/altera_jtag_uart_nexus.c ============================================================================== --- head/sys/dev/altera/jtag_uart/altera_jtag_uart_nexus.c Tue Oct 29 13:44:19 2013 (r257335) +++ head/sys/dev/altera/jtag_uart/altera_jtag_uart_nexus.c Tue Oct 29 13:48:41 2013 (r257336) @@ -62,7 +62,7 @@ altera_jtag_uart_nexus_probe(device_t de { device_set_desc(dev, "Altera JTAG UART"); - return (BUS_PROBE_DEFAULT); + return (BUS_PROBE_NOWILDCARD); } static int Modified: head/sys/dev/altera/sdcard/altera_sdcard_nexus.c ============================================================================== --- head/sys/dev/altera/sdcard/altera_sdcard_nexus.c Tue Oct 29 13:44:19 2013 (r257335) +++ head/sys/dev/altera/sdcard/altera_sdcard_nexus.c Tue Oct 29 13:48:41 2013 (r257336) @@ -62,7 +62,7 @@ altera_sdcard_nexus_probe(device_t dev) { device_set_desc(dev, "Altera Secure Data Card IP Core"); - return (BUS_PROBE_DEFAULT); + return (BUS_PROBE_NOWILDCARD); } static int