Convert to change in ISA compatiblity port handling in the base bt driver.

This commit is contained in:
Justin T. Gibbs 1998-11-10 06:45:14 +00:00
parent 3c1cabf7a2
commit 4ff057c7b0
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=41049
2 changed files with 6 additions and 6 deletions

View File

@ -26,7 +26,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: bt_pci.c,v 1.1 1998/09/15 07:32:57 gibbs Exp $
* $Id: bt_pci.c,v 1.2 1998/10/30 02:06:42 gibbs Exp $
*/
#include "pci.h"
@ -131,7 +131,7 @@ bt_pci_probe (pcici_t config_id, pcidi_t type)
if (error == 0
&& pci_info.io_port < BIO_DISABLED) {
bt_mark_probed_bio(pci_info.io_port);
if (bsh != bt_fetch_isa_iop(pci_info.io_port)) {
if (bsh != bt_iop_from_bio(pci_info.io_port)) {
u_int8_t new_addr;
new_addr = BIO_DISABLED;
@ -143,7 +143,7 @@ bt_pci_probe (pcici_t config_id, pcidi_t type)
}
}
bt_free(bt);
return ("Buslogic Multimaster SCSI host adapter");
return ("Buslogic Multi-Master SCSI Host Adapter");
break;
}
default:

View File

@ -26,7 +26,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: bt_pci.c,v 1.1 1998/09/15 07:32:57 gibbs Exp $
* $Id: bt_pci.c,v 1.2 1998/10/30 02:06:42 gibbs Exp $
*/
#include "pci.h"
@ -131,7 +131,7 @@ bt_pci_probe (pcici_t config_id, pcidi_t type)
if (error == 0
&& pci_info.io_port < BIO_DISABLED) {
bt_mark_probed_bio(pci_info.io_port);
if (bsh != bt_fetch_isa_iop(pci_info.io_port)) {
if (bsh != bt_iop_from_bio(pci_info.io_port)) {
u_int8_t new_addr;
new_addr = BIO_DISABLED;
@ -143,7 +143,7 @@ bt_pci_probe (pcici_t config_id, pcidi_t type)
}
}
bt_free(bt);
return ("Buslogic Multimaster SCSI host adapter");
return ("Buslogic Multi-Master SCSI Host Adapter");
break;
}
default: