diff options
author | Ralf Baechle <ralf@linux-mips.org> | 1997-04-29 21:13:14 +0000 |
---|---|---|
committer | <ralf@linux-mips.org> | 1997-04-29 21:13:14 +0000 |
commit | 19c9bba94152148523ba0f7ef7cffe3d45656b11 (patch) | |
tree | 40b1cb534496a7f1ca0f5c314a523c69f1fee464 /drivers/scsi/aic7xxx.c | |
parent | 7206675c40394c78a90e74812bbdbf8cf3cca1be (diff) |
Import of Linux/MIPS 2.1.36
Diffstat (limited to 'drivers/scsi/aic7xxx.c')
-rw-r--r-- | drivers/scsi/aic7xxx.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/scsi/aic7xxx.c b/drivers/scsi/aic7xxx.c index f0982dc8a..96e66defd 100644 --- a/drivers/scsi/aic7xxx.c +++ b/drivers/scsi/aic7xxx.c @@ -79,7 +79,7 @@ */ #define VIRT_TO_BUS(a) (unsigned int)virt_to_bus((void *)(a)) -struct proc_dir_entry proc_scsi_aic7xxx = { +static struct proc_dir_entry proc_scsi_aic7xxx = { PROC_SCSI_AIC7XXX, 7, "aic7xxx", S_IFDIR | S_IRUGO | S_IXUGO, 2 }; @@ -457,6 +457,7 @@ struct seeprom_config { * sections. */ #define PAUSE_SEQUENCER(p) \ + synchronize_irq(); \ outb(p->pause, HCNTRL + p->base); \ while ((inb(HCNTRL + p->base) & PAUSE) == 0) \ ; \ @@ -1089,7 +1090,7 @@ aic7xxx_delay(int seconds) * Return a string containing just the RCS version number from either * an Id or Revision RCS clause. *-F*************************************************************************/ -const char * +static const char * rcs_version(const char *version_info) { static char buf[10]; |