Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v2.6.14-rc2 19 lines 807 B view raw
1#ifndef CPQFCTS_H 2#define CPQFCTS_H 3#include "cpqfcTSstructs.h" 4 5// These functions are required by the Linux SCSI layers 6extern int cpqfcTS_detect(Scsi_Host_Template *); 7extern int cpqfcTS_release(struct Scsi_Host *); 8extern const char * cpqfcTS_info(struct Scsi_Host *); 9extern int cpqfcTS_proc_info(struct Scsi_Host *, char *, char **, off_t, int, int); 10extern int cpqfcTS_queuecommand(Scsi_Cmnd *, void (* done)(Scsi_Cmnd *)); 11extern int cpqfcTS_abort(Scsi_Cmnd *); 12extern int cpqfcTS_reset(Scsi_Cmnd *, unsigned int); 13extern int cpqfcTS_eh_abort(Scsi_Cmnd *Cmnd); 14extern int cpqfcTS_eh_device_reset(Scsi_Cmnd *); 15extern int cpqfcTS_biosparam(struct scsi_device *, struct block_device *, 16 sector_t, int[]); 17extern int cpqfcTS_ioctl( Scsi_Device *ScsiDev, int Cmnd, void *arg); 18 19#endif /* CPQFCTS_H */