diff options
Diffstat (limited to 'drivers/scsi/ips.c')
-rw-r--r-- | drivers/scsi/ips.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/scsi/ips.c b/drivers/scsi/ips.c index cae3262a2957..8ab90a25dac9 100644 --- a/drivers/scsi/ips.c +++ b/drivers/scsi/ips.c | |||
@@ -248,7 +248,7 @@ module_param(ips, charp, 0); | |||
248 | /* | 248 | /* |
249 | * Function prototypes | 249 | * Function prototypes |
250 | */ | 250 | */ |
251 | static int ips_detect(Scsi_Host_Template *); | 251 | static int ips_detect(struct scsi_host_template *); |
252 | static int ips_release(struct Scsi_Host *); | 252 | static int ips_release(struct Scsi_Host *); |
253 | static int ips_eh_abort(Scsi_Cmnd *); | 253 | static int ips_eh_abort(Scsi_Cmnd *); |
254 | static int ips_eh_reset(Scsi_Cmnd *); | 254 | static int ips_eh_reset(Scsi_Cmnd *); |
@@ -377,7 +377,7 @@ static char *ips_FlashData = NULL; /* CD Boot - Flash Data Buffer */ | |||
377 | static dma_addr_t ips_flashbusaddr; | 377 | static dma_addr_t ips_flashbusaddr; |
378 | static long ips_FlashDataInUse; /* CD Boot - Flash Data In Use Flag */ | 378 | static long ips_FlashDataInUse; /* CD Boot - Flash Data In Use Flag */ |
379 | static uint32_t MaxLiteCmds = 32; /* Max Active Cmds for a Lite Adapter */ | 379 | static uint32_t MaxLiteCmds = 32; /* Max Active Cmds for a Lite Adapter */ |
380 | static Scsi_Host_Template ips_driver_template = { | 380 | static struct scsi_host_template ips_driver_template = { |
381 | .detect = ips_detect, | 381 | .detect = ips_detect, |
382 | .release = ips_release, | 382 | .release = ips_release, |
383 | .info = ips_info, | 383 | .info = ips_info, |
@@ -587,7 +587,7 @@ __setup("ips=", ips_setup); | |||
587 | /* */ | 587 | /* */ |
588 | /****************************************************************************/ | 588 | /****************************************************************************/ |
589 | static int | 589 | static int |
590 | ips_detect(Scsi_Host_Template * SHT) | 590 | ips_detect(struct scsi_host_template * SHT) |
591 | { | 591 | { |
592 | int i; | 592 | int i; |
593 | 593 | ||