1 #ifndef _SCSI_DEBUG_H 2 3 #include <linux/types.h> 4 5 int scsi_debug_detect(int); 6 int scsi_debug_command(Scsi_Cmnd *); 7 int scsi_debug_queuecommand(Scsi_Cmnd *, void (*done)(Scsi_Cmnd *)); 8 int scsi_debug_abort(Scsi_Cmnd *, int); 9 int scsi_debug_biosparam(int, int*); 10 char *scsi_debug_info(void); 11 int scsi_debug_reset(Scsi_Cmnd *); 12 13 #ifndef NULL 14 #define NULL 0 15 #endif 16 17 #define SCSI_DEBUG_MAILBOXES 8 18 19 #define SCSI_DEBUG {"SCSI DEBUG", scsi_debug_detect, \ 20 scsi_debug_info, scsi_debug_command, \ 21 scsi_debug_queuecommand, \ 22 scsi_debug_abort, \ 23 scsi_debug_reset, \ 24 NULL, \ 25 scsi_debug_biosparam, \ 26 SCSI_DEBUG_MAILBOXES, 7, SG_ALL, 1, 0, 1} 27 #endif