1995-05-30 08:16:23 +00:00
|
|
|
/*
|
1995-03-01 22:24:47 +00:00
|
|
|
* Driver for a device we can't identify.
|
1993-11-18 05:03:27 +00:00
|
|
|
* by Julian Elischer (julian@tfs.com)
|
|
|
|
*
|
1995-05-30 08:16:23 +00:00
|
|
|
* $Id: uk.c,v 1.8 1995/03/04 20:51:08 dufault Exp $
|
1995-03-04 20:51:10 +00:00
|
|
|
*
|
|
|
|
* If you find that you are adding any code to this file look closely
|
|
|
|
* at putting it in "scsi_driver.c" instead.
|
1993-11-18 05:03:27 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <scsi/scsi_all.h>
|
|
|
|
#include <scsi/scsiconf.h>
|
|
|
|
|
1995-03-01 22:24:47 +00:00
|
|
|
SCSI_DEVICE_ENTRIES(uk)
|
|
|
|
|
1993-11-18 05:03:27 +00:00
|
|
|
struct scsi_device uk_switch =
|
|
|
|
{
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
"uk",
|
|
|
|
0,
|
1995-03-01 22:24:47 +00:00
|
|
|
{0, 0},
|
|
|
|
SDEV_ONCE_ONLY, /* Only one open allowed */
|
1995-03-04 20:51:10 +00:00
|
|
|
0,
|
|
|
|
"Unknown",
|
1995-03-01 22:24:47 +00:00
|
|
|
ukopen,
|
|
|
|
0,
|
|
|
|
T_UNKNOWN,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
1994-12-16 06:03:28 +00:00
|
|
|
};
|