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
This commit is contained in:
Warner Losh 2018-10-22 02:36:31 +00:00
parent 6a18678249
commit 221ac8f4cd
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=339575
2 changed files with 1 additions and 7 deletions

View File

@ -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

View File

@ -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;
}