Change flags of ncv and nsp driver. Both were conflicted with the flags

used in lower layer (scsi_low.c).

The flag of ncv for KME KXLC004 was chaged from 0x1 to 0x100.
The flag of nsp for PIO mode was chaged from 0x1 to 0x100.
This commit is contained in:
Noriaki Mitsunaga 2000-10-29 06:54:32 +00:00
parent 8306c0027e
commit 82fdce0977
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=67848
3 changed files with 4 additions and 4 deletions

View File

@ -1161,7 +1161,7 @@ card "KME" "KXLC002"
# KME KXLC004
card "KME" "KXLC004"
config auto "ncv" ? 0xb4d00001
config auto "ncv" ? 0xb4d00100
# IO DATA PCSC-DV
# Macnica Miracle SCSI mPS100
@ -1203,7 +1203,7 @@ card "WBT" "NinjaSCSI-3"
# WORKBIT Ninja SCSI series (PIO mode)
# (If you want to use them in PIO mode comment out above and uncommnet below.)
#card "WBT" "NinjaSCSI-3"
# config auto "nsp" ? 0x1
# config auto "nsp" ? 0x100
########## opl ##########

View File

@ -74,7 +74,7 @@ extern struct ncv_softc *ncvdata[];
#include "ncv.h"
#endif
#define KME_KXLC004_01 0x1
#define KME_KXLC004_01 0x100
#define OFFSET_KME_KXLC004_01 0x10
/* pccard support */

View File

@ -87,7 +87,7 @@ extern struct nsp_softc *nspdata[];
#include <pccard/cardinfo.h>
#include <pccard/slot.h>
#define PIO_MODE 1 /* pd_flags */
#define PIO_MODE 0x100 /* pd_flags */
static int nspprobe(DEVPORT_PDEVICE devi);
static int nspattach(DEVPORT_PDEVICE devi);