diff options
Diffstat (limited to 'linux/src/drivers/scsi/hosts.c')
-rw-r--r-- | linux/src/drivers/scsi/hosts.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/linux/src/drivers/scsi/hosts.c b/linux/src/drivers/scsi/hosts.c index 07646041..0f1beddd 100644 --- a/linux/src/drivers/scsi/hosts.c +++ b/linux/src/drivers/scsi/hosts.c @@ -133,6 +133,10 @@ #include "53c7,8xx.h" #endif +#ifdef CONFIG_SCSI_SYM53C8XX +#include "sym53c8xx.h" +#endif + #ifdef CONFIG_SCSI_NCR53C8XX #include "ncr53c8xx.h" #endif @@ -298,6 +302,9 @@ static Scsi_Host_Template builtin_scsi_hosts[] = #ifdef CONFIG_SCSI_NCR53C7xx NCR53c7xx, #endif +#ifdef CONFIG_SCSI_SYM53C8XX + SYM53C8XX, +#endif #ifdef CONFIG_SCSI_NCR53C8XX NCR53C8XX, #endif @@ -465,6 +472,7 @@ unsigned int scsi_init() * Initialize our semaphores. -1 is interpreted to mean * "inactive" - where as 0 will indicate a time out condition. */ + printk("\rprobing scsi %d/%d: %s \e[K", tpnt-builtin_scsi_hosts, MAX_SCSI_HOSTS, tpnt->name); pcount = next_scsi_host; if ((tpnt->detect) && @@ -489,6 +497,7 @@ unsigned int scsi_init() #endif } } + printk("\ndone\n"); for(shpnt=scsi_hostlist; shpnt; shpnt = shpnt->next) { |