Commit c7a4e6c2 authored by Alan Cox's avatar Alan Cox Committed by Linus Torvalds

[PATCH] resurrect the NCR53c406a

parent ec765df5
This diff is collapsed.
...@@ -32,8 +32,10 @@ ...@@ -32,8 +32,10 @@
info: NCR53c406a_info /* info */, \ info: NCR53c406a_info /* info */, \
command: NCR53c406a_command /* command */, \ command: NCR53c406a_command /* command */, \
queuecommand: NCR53c406a_queue /* queuecommand */, \ queuecommand: NCR53c406a_queue /* queuecommand */, \
abort: NCR53c406a_abort /* abort */, \ eh_abort_handler: NCR53c406a_abort /* abort */, \
reset: NCR53c406a_reset /* reset */, \ eh_bus_reset_handler: NCR53c406a_bus_reset /* reset */, \
eh_device_reset_handler: NCR53c406a_device_reset /* reset */, \
eh_host_reset_handler: NCR53c406a_host_reset /* reset */, \
bios_param: NCR53c406a_biosparm /* biosparm */, \ bios_param: NCR53c406a_biosparm /* biosparm */, \
can_queue: 1 /* can_queue */, \ can_queue: 1 /* can_queue */, \
this_id: 7 /* SCSI ID of the chip */, \ this_id: 7 /* SCSI ID of the chip */, \
...@@ -43,33 +45,15 @@ ...@@ -43,33 +45,15 @@
use_clustering: ENABLE_CLUSTERING \ use_clustering: ENABLE_CLUSTERING \
} }
int NCR53c406a_detect(Scsi_Host_Template *); static int NCR53c406a_detect(Scsi_Host_Template *);
const char* NCR53c406a_info(struct Scsi_Host *); static const char *NCR53c406a_info(struct Scsi_Host *);
int NCR53c406a_command(Scsi_Cmnd *); static int NCR53c406a_command(Scsi_Cmnd *);
int NCR53c406a_queue(Scsi_Cmnd *, void (*done)(Scsi_Cmnd *)); static int NCR53c406a_queue(Scsi_Cmnd *, void (*done) (Scsi_Cmnd *));
int NCR53c406a_abort(Scsi_Cmnd *); static int NCR53c406a_abort(Scsi_Cmnd *);
int NCR53c406a_reset(Scsi_Cmnd *, unsigned int); static int NCR53c406a_bus_reset(Scsi_Cmnd *);
int NCR53c406a_biosparm(Disk *, struct block_device *, int []); static int NCR53c406a_device_reset(Scsi_Cmnd *);
static int NCR53c406a_host_reset(Scsi_Cmnd *);
static int NCR53c406a_biosparm(Disk *, struct block_device *, int[]);
#endif /* _NCR53C406A_H */ #endif /* _NCR53C406A_H */
/*
* Overrides for Emacs so that we get a uniform tabbing style.
* Emacs will notice this stuff at the end of the file and automatically
* adjust the settings for this buffer only. This must remain at the end
* of the file.
* ---------------------------------------------------------------------------
* Local variables:
* c-indent-level: 4
* c-brace-imaginary-offset: 0
* c-brace-offset: -4
* c-argdecl-indent: 4
* c-label-offset: -4
* c-continued-statement-offset: 4
* c-continued-brace-offset: 0
* indent-tabs-mode: nil
* tab-width: 8
* End:
*/
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment