aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/NCR53C9x.c
diff options
context:
space:
mode:
authorAl Viro <viro@ftp.linux.org.uk>2007-07-19 23:33:18 -0400
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-07-20 11:24:49 -0400
commit88f8bb780e13fd31f207e1752ee8624dc786381f (patch)
treeb2504dfba3a3e0a0d6c2502b7bae9d981be708d5 /drivers/scsi/NCR53C9x.c
parent7e5de05169b766b86b4bc7c196f53d57e1952bff (diff)
m68k: missing exports
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/scsi/NCR53C9x.c')
-rw-r--r--drivers/scsi/NCR53C9x.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/scsi/NCR53C9x.c b/drivers/scsi/NCR53C9x.c
index 773d11dd9953..79b4df158140 100644
--- a/drivers/scsi/NCR53C9x.c
+++ b/drivers/scsi/NCR53C9x.c
@@ -95,6 +95,8 @@ enum {
95/* The master ring of all esp hosts we are managing in this driver. */ 95/* The master ring of all esp hosts we are managing in this driver. */
96static struct NCR_ESP *espchain; 96static struct NCR_ESP *espchain;
97int nesps = 0, esps_in_use = 0, esps_running = 0; 97int nesps = 0, esps_in_use = 0, esps_running = 0;
98EXPORT_SYMBOL(nesps);
99EXPORT_SYMBOL(esps_running);
98 100
99irqreturn_t esp_intr(int irq, void *dev_id); 101irqreturn_t esp_intr(int irq, void *dev_id);
100 102
@@ -524,6 +526,7 @@ void esp_bootup_reset(struct NCR_ESP *esp, struct ESP_regs *eregs)
524 /* Eat any bitrot in the chip and we are done... */ 526 /* Eat any bitrot in the chip and we are done... */
525 trash = esp_read(eregs->esp_intrpt); 527 trash = esp_read(eregs->esp_intrpt);
526} 528}
529EXPORT_SYMBOL(esp_bootup_reset);
527 530
528/* Allocate structure and insert basic data such as SCSI chip frequency 531/* Allocate structure and insert basic data such as SCSI chip frequency
529 * data and a pointer to the device 532 * data and a pointer to the device
@@ -772,6 +775,7 @@ const char *esp_info(struct Scsi_Host *host)
772 panic("Bogon ESP revision"); 775 panic("Bogon ESP revision");
773 }; 776 };
774} 777}
778EXPORT_SYMBOL(esp_info);
775 779
776/* From Wolfgang Stanglmeier's NCR scsi driver. */ 780/* From Wolfgang Stanglmeier's NCR scsi driver. */
777struct info_str 781struct info_str
@@ -902,6 +906,7 @@ int esp_proc_info(struct Scsi_Host *shost, char *buffer, char **start, off_t off
902 *start = buffer; 906 *start = buffer;
903 return esp_host_info(esp, buffer, offset, length); 907 return esp_host_info(esp, buffer, offset, length);
904} 908}
909EXPORT_SYMBOL(esp_proc_info);
905 910
906static void esp_get_dmabufs(struct NCR_ESP *esp, Scsi_Cmnd *sp) 911static void esp_get_dmabufs(struct NCR_ESP *esp, Scsi_Cmnd *sp)
907{ 912{
@@ -3535,6 +3540,7 @@ state_machine:
3535 if(esp->dma_irq_exit) 3540 if(esp->dma_irq_exit)
3536 esp->dma_irq_exit(esp); 3541 esp->dma_irq_exit(esp);
3537} 3542}
3543EXPORT_SYMBOL(esp_handle);
3538 3544
3539#ifndef CONFIG_SMP 3545#ifndef CONFIG_SMP
3540irqreturn_t esp_intr(int irq, void *dev_id) 3546irqreturn_t esp_intr(int irq, void *dev_id)
@@ -3631,6 +3637,7 @@ void esp_release(void)
3631 esps_in_use--; 3637 esps_in_use--;
3632 esps_running = esps_in_use; 3638 esps_running = esps_in_use;
3633} 3639}
3640EXPORT_SYMBOL(esp_release);
3634#endif 3641#endif
3635 3642
3636EXPORT_SYMBOL(esp_abort); 3643EXPORT_SYMBOL(esp_abort);