diff options
| author | Matt Jacob <mjacob@FreeBSD.org> | 2000-01-03 22:13:40 +0000 |
|---|---|---|
| committer | Matt Jacob <mjacob@FreeBSD.org> | 2000-01-03 22:13:40 +0000 |
| commit | 41593b2586c0519a60988460d1026e0e1a1952cc (patch) | |
| tree | a8a8f2e1974bccb1928367e44a85e7111b9eb7e4 /sys/dev/isp | |
| parent | 361959970f12e7538d16cbbeea23066ea7d55b4c (diff) | |
Notes
Diffstat (limited to 'sys/dev/isp')
| -rw-r--r-- | sys/dev/isp/ispvar.h | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/sys/dev/isp/ispvar.h b/sys/dev/isp/ispvar.h index 3da0199d98db..a28dd99fde0d 100644 --- a/sys/dev/isp/ispvar.h +++ b/sys/dev/isp/ispvar.h @@ -55,7 +55,7 @@ #endif #define ISP_CORE_VERSION_MAJOR 1 -#define ISP_CORE_VERSION_MINOR 11 +#define ISP_CORE_VERSION_MINOR 12 /* * Vector for bus specific code to provide specific services. @@ -449,11 +449,9 @@ typedef enum { ISPCTL_RESET_DEV, /* Reset Device */ ISPCTL_ABORT_CMD, /* Abort Command */ ISPCTL_UPDATE_PARAMS, /* Update Operating Parameters */ -#ifdef ISP_TARGET_MODE - ISPCTL_ENABLE_LUN, /* enable a LUN */ - ISPCTL_MODIFY_LUN, /* enable a LUN */ -#endif - ISPCTL_FCLINK_TEST /* Test FC Link Status */ + ISPCTL_FCLINK_TEST, /* Test FC Link Status */ + ISPCTL_PDB_SYNC, /* Synchronize Port Database */ + ISPCTL_TOGGLE_TMODE /* toggle target mode */ } ispctl_t; int isp_control __P((struct ispsoftc *, ispctl_t, void *)); @@ -474,8 +472,9 @@ typedef enum { ISPASYNC_PDB_CHANGED, /* FC Port Data Base Changed */ ISPASYNC_CHANGE_NOTIFY, /* FC SNS Change Notification */ ISPASYNC_FABRIC_DEV, /* FC New Fabric Device */ - ISPASYNC_TARGET_CMD, /* New target command */ - ISPASYNC_TARGET_EVENT /* New target event */ + ISPASYNC_TARGET_MESSAGE, /* target message */ + ISPASYNC_TARGET_EVENT, /* target asynchronous event */ + ISPASYNC_TARGET_ACTION /* other target command action */ } ispasync_t; int isp_async __P((struct ispsoftc *, ispasync_t, void *)); |
