From owner-dev-commits-src-main@freebsd.org Sat Jan 16 22:53:38 2021 Return-Path: Delivered-To: dev-commits-src-main@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id BDF284EDF83; Sat, 16 Jan 2021 22:53:38 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4DJCyV4jRYz3CqN; Sat, 16 Jan 2021 22:53:38 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 82C8A170A9; Sat, 16 Jan 2021 22:53:38 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 10GMrcxB053217; Sat, 16 Jan 2021 22:53:38 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 10GMrcwd053216; Sat, 16 Jan 2021 22:53:38 GMT (envelope-from git) Date: Sat, 16 Jan 2021 22:53:38 GMT Message-Id: <202101162253.10GMrcwd053216@gitrepo.freebsd.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org From: Marius Strobl Subject: git: d65427ad582c - main - sym(4): Remove remainder of SYM_SETUP_LP_PROBE_MAP support MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: marius X-Git-Repository: src X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: d65427ad582cac085428a0b7cf805a8e6996a7a4 Auto-Submitted: auto-generated X-BeenThere: dev-commits-src-main@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for the main branch of the src repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Jan 2021 22:53:38 -0000 The branch main has been updated by marius: URL: https://cgit.FreeBSD.org/src/commit/?id=d65427ad582cac085428a0b7cf805a8e6996a7a4 commit d65427ad582cac085428a0b7cf805a8e6996a7a4 Author: Marius Strobl AuthorDate: 2020-12-27 18:38:58 +0000 Commit: Marius Strobl CommitDate: 2021-01-16 22:53:12 +0000 sym(4): Remove remainder of SYM_SETUP_LP_PROBE_MAP support Missed in 221ac8f4cd823a2b047c2807e2cf744c7176dd1f and r339575 respectively. --- sys/dev/sym/sym_conf.h | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/sys/dev/sym/sym_conf.h b/sys/dev/sym/sym_conf.h index 9fd113cc1fc3..c5ce93864a6a 100644 --- a/sys/dev/sym/sym_conf.h +++ b/sys/dev/sym/sym_conf.h @@ -274,30 +274,4 @@ #define SYM_SETUP_MAX_LUN (8) #endif -/* - * Low priority probe map. - * - * This option is used as a bitmap to tell the driver - * about chips that are to be claimed with a low priority - * (-2000) by the probe method. This allows any other driver - * that may return some higher priority value for the same - * chips to take precedence over this driver (sym). - * This option may be used when both the ncr driver and this - * driver are configured. - * - * Bits are to be coded as follows: - * 0x01 -> 810a, 860 - * 0x02 -> 825a, 875, 885, 895 - * 0x04 -> 895a, 896, 1510d - * 0x08 -> 1010 - * 0x40 -> 810, 815, 825 - * - * For example, value 5 tells the driver to claim support - * for 810a, 860, 895a, 896 and 1510d with low priority, - * allowing the ncr driver to take precedence if configured. - */ -#ifndef SYM_SETUP_LP_PROBE_MAP -#define SYM_SETUP_LP_PROBE_MAP 0 -#endif - #endif /* SYM_CONF_H */