diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-04 21:57:35 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-04 21:57:35 -0400 |
commit | 97d41e90fe61399b99d74820cb7f2d6e0fbac91d (patch) | |
tree | f759371424a26963b04badbb4433e360be4e8750 /drivers/scsi/nsp32.h | |
parent | 3bdc9d0b408e01c4e556daba0035ba37f603e920 (diff) | |
parent | afaf5a2d341d33b66b47c2716a263ce593460a08 (diff) |
Merge master.kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6
* master.kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6: (54 commits)
[SCSI] Initial Commit of qla4xxx
[SCSI] raid class: handle component-add errors
[SCSI] SCSI megaraid_sas: handle thrown errors
[SCSI] SCSI aic94xx: handle sysfs errors
[SCSI] SCSI st: fix error handling in module init, sysfs
[SCSI] SCSI sd: fix module init/exit error handling
[SCSI] SCSI osst: add error handling to module init, sysfs
[SCSI] scsi: remove hosts.h
[SCSI] scsi: Scsi_Cmnd convertion in aic7xxx_old.c
[SCSI] megaraid_sas: sets ioctl timeout and updates version,changelog
[SCSI] megaraid_sas: adds tasklet for cmd completion
[SCSI] megaraid_sas: prints pending cmds before setting hw_crit_error
[SCSI] megaraid_sas: function pointer for disable interrupt
[SCSI] megaraid_sas: frame count optimization
[SCSI] megaraid_sas: FW transition and q size changes
[SCSI] qla2xxx: Update version number to 8.01.07-k2.
[SCSI] qla2xxx: Stall mid-layer error handlers while rport is blocked.
[SCSI] qla2xxx: Add MODULE_FIRMWARE tags.
[SCSI] qla2xxx: Add support for host port state FC transport attribute.
[SCSI] qla2xxx: Add support for fabric name FC transport attribute.
...
Diffstat (limited to 'drivers/scsi/nsp32.h')
-rw-r--r-- | drivers/scsi/nsp32.h | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/drivers/scsi/nsp32.h b/drivers/scsi/nsp32.h index 5addf9fb1e15..a976e8193d16 100644 --- a/drivers/scsi/nsp32.h +++ b/drivers/scsi/nsp32.h | |||
@@ -619,47 +619,5 @@ typedef struct _nsp32_hw_data { | |||
619 | #define REQSACK_TIMEOUT_TIME 10000 /* max wait time for REQ/SACK assertion | 619 | #define REQSACK_TIMEOUT_TIME 10000 /* max wait time for REQ/SACK assertion |
620 | or negation, 10000us == 10ms */ | 620 | or negation, 10000us == 10ms */ |
621 | 621 | ||
622 | /************************************************************************** | ||
623 | * Compatibility functions | ||
624 | */ | ||
625 | |||
626 | /* for Kernel 2.4 */ | ||
627 | #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,0)) | ||
628 | # define scsi_register_host(template) scsi_register_module(MODULE_SCSI_HA, template) | ||
629 | # define scsi_unregister_host(template) scsi_unregister_module(MODULE_SCSI_HA, template) | ||
630 | # define scsi_host_put(host) scsi_unregister(host) | ||
631 | # define pci_name(pci_dev) ((pci_dev)->slot_name) | ||
632 | |||
633 | typedef void irqreturn_t; | ||
634 | # define IRQ_NONE /* */ | ||
635 | # define IRQ_HANDLED /* */ | ||
636 | # define IRQ_RETVAL(x) /* */ | ||
637 | |||
638 | /* This is ad-hoc version of scsi_host_get_next() */ | ||
639 | static inline struct Scsi_Host *scsi_host_get_next(struct Scsi_Host *host) | ||
640 | { | ||
641 | if (host == NULL) { | ||
642 | return scsi_hostlist; | ||
643 | } else { | ||
644 | return host->next; | ||
645 | } | ||
646 | } | ||
647 | |||
648 | /* This is ad-hoc version of scsi_host_hn_get() */ | ||
649 | static inline struct Scsi_Host *scsi_host_hn_get(unsigned short hostno) | ||
650 | { | ||
651 | struct Scsi_Host *host; | ||
652 | |||
653 | for (host = scsi_host_get_next(NULL); host != NULL; | ||
654 | host = scsi_host_get_next(host)) { | ||
655 | if (host->host_no == hostno) { | ||
656 | break; | ||
657 | } | ||
658 | } | ||
659 | |||
660 | return host; | ||
661 | } | ||
662 | #endif | ||
663 | |||
664 | #endif /* _NSP32_H */ | 622 | #endif /* _NSP32_H */ |
665 | /* end */ | 623 | /* end */ |