ChangeSet 1.2181.22.11, 2005/03/20 10:12:34-06:00, [EMAIL PROTECTED](none)

        SCSI: Re-export code incorrectly made static
        
        The interrupt routine in 53c700 is designed to be exported
        for a future code change
        
        Signed-off-by: James Bottomley <[EMAIL PROTECTED]>



 53c700.c |    4 ++--
 53c700.h |    1 +
 2 files changed, 3 insertions(+), 2 deletions(-)


diff -Nru a/drivers/scsi/53c700.c b/drivers/scsi/53c700.c
--- a/drivers/scsi/53c700.c     2005-03-30 16:08:44 -08:00
+++ b/drivers/scsi/53c700.c     2005-03-30 16:08:44 -08:00
@@ -167,7 +167,6 @@
 #include "53c700_d.h"
 
 
-STATIC irqreturn_t NCR_700_intr(int irq, void *dev_id, struct pt_regs *regs);
 STATIC int NCR_700_queuecommand(struct scsi_cmnd *, void (*done)(struct 
scsi_cmnd *));
 STATIC int NCR_700_abort(struct scsi_cmnd * SCpnt);
 STATIC int NCR_700_bus_reset(struct scsi_cmnd * SCpnt);
@@ -1489,7 +1488,7 @@
        return 1;
 }
 
-STATIC irqreturn_t
+irqreturn_t
 NCR_700_intr(int irq, void *dev_id, struct pt_regs *regs)
 {
        struct Scsi_Host *host = (struct Scsi_Host *)dev_id;
@@ -2164,6 +2163,7 @@
 
 EXPORT_SYMBOL(NCR_700_detect);
 EXPORT_SYMBOL(NCR_700_release);
+EXPORT_SYMBOL(NCR_700_intr);
 
 static struct spi_function_template NCR_700_transport_functions =  {
        .set_period     = NCR_700_set_period,
diff -Nru a/drivers/scsi/53c700.h b/drivers/scsi/53c700.h
--- a/drivers/scsi/53c700.h     2005-03-30 16:08:44 -08:00
+++ b/drivers/scsi/53c700.h     2005-03-30 16:08:44 -08:00
@@ -63,6 +63,7 @@
                struct NCR_700_Host_Parameters *, struct device *,
                unsigned long, u8);
 int NCR_700_release(struct Scsi_Host *host);
+irqreturn_t NCR_700_intr(int, void *, struct pt_regs *);
 
 
 enum NCR_700_Host_State {
-
To unsubscribe from this list: send the line "unsubscribe bk-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to