From owner-svn-src-all@freebsd.org Mon Oct 22 02:36:32 2018 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8DBF0FD8DAD; Mon, 22 Oct 2018 02:36:32 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 415E1829BD; Mon, 22 Oct 2018 02:36:32 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3C61C16371; Mon, 22 Oct 2018 02:36:32 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w9M2aWr4044266; Mon, 22 Oct 2018 02:36:32 GMT (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9M2aVaL044265; Mon, 22 Oct 2018 02:36:31 GMT (envelope-from imp@FreeBSD.org) Message-Id: <201810220236.w9M2aVaL044265@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: imp set sender to imp@FreeBSD.org using -f From: Warner Losh Date: Mon, 22 Oct 2018 02:36:31 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r339575 - in head/sys: conf dev/sym X-SVN-Group: head X-SVN-Commit-Author: imp X-SVN-Commit-Paths: in head/sys: conf dev/sym X-SVN-Commit-Revision: 339575 X-SVN-Commit-Repository: base 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.29 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: Mon, 22 Oct 2018 02:36:32 -0000 Author: imp Date: Mon Oct 22 02:36:31 2018 New Revision: 339575 URL: https://svnweb.freebsd.org/changeset/base/339575 Log: Remove the long obsolete SYM_SETUP_LP_PROBE_MAP option. It's not been needed for almost 20 years, and is totally useless now that ncr(4) has been removed. Relnotes: yes Modified: head/sys/conf/options head/sys/dev/sym/sym_hipd.c Modified: head/sys/conf/options ============================================================================== --- head/sys/conf/options Mon Oct 22 02:36:18 2018 (r339574) +++ head/sys/conf/options Mon Oct 22 02:36:31 2018 (r339575) @@ -374,11 +374,6 @@ SCSI_PT_DEFAULT_TIMEOUT opt_pt.h SES_ENABLE_PASSTHROUGH opt_ses.h # Options used in dev/sym/ (Symbios SCSI driver). -SYM_SETUP_LP_PROBE_MAP opt_sym.h #-Low Priority Probe Map (bits) - # Allows the ncr to take precedence - # 1 (1<<0) -> 810a, 860 - # 2 (1<<1) -> 825a, 875, 885, 895 - # 4 (1<<2) -> 895a, 896, 1510d SYM_SETUP_SCSI_DIFF opt_sym.h #-HVD support for 825a, 875, 885 # disabled:0 (default), enabled:1 SYM_SETUP_PCI_PARITY opt_sym.h #-PCI parity checking Modified: head/sys/dev/sym/sym_hipd.c ============================================================================== --- head/sys/dev/sym/sym_hipd.c Mon Oct 22 02:36:18 2018 (r339574) +++ head/sys/dev/sym/sym_hipd.c Mon Oct 22 02:36:31 2018 (r339575) @@ -8387,8 +8387,7 @@ sym_pci_probe(device_t dev) chip = sym_find_pci_chip(dev); if (chip && sym_find_firmware(chip)) { device_set_desc(dev, chip->name); - return (chip->lp_probe_bit & SYM_SETUP_LP_PROBE_MAP)? - BUS_PROBE_LOW_PRIORITY : BUS_PROBE_DEFAULT; + return BUS_PROBE_DEFAULT; } return ENXIO; }