diff options
author | Matthew Wilcox <matthew@wil.cx> | 2006-02-28 06:28:15 -0700 |
---|---|---|
committer | James Bottomley <jejb@mulgrave.il.steeleye.com> | 2006-02-28 09:36:14 -0600 |
commit | 23ff51e9fe24f98c1053ac1cdded434012eee342 (patch) | |
tree | e9135185f58e34e17e79a340a6bac89c1c48b0bf | |
parent | 123fc7fd6f609a000061f586a794c89d1122ede1 (diff) | |
download | linux-23ff51e9fe24f98c1053ac1cdded434012eee342.tar.gz linux-23ff51e9fe24f98c1053ac1cdded434012eee342.tar.bz2 linux-23ff51e9fe24f98c1053ac1cdded434012eee342.zip |
[SCSI] Fix uninitialised width and speed in sym2
sym2 boards without NVRAM currently negotiate narrow due to this missed
initialisation
Signed-off-by: Matthew Wilcox <matthew@wil.cx>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
-rw-r--r-- | drivers/scsi/sym53c8xx_2/sym_hipd.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/scsi/sym53c8xx_2/sym_hipd.c b/drivers/scsi/sym53c8xx_2/sym_hipd.c index f4854c33f48d..2627000ca653 100644 --- a/drivers/scsi/sym53c8xx_2/sym_hipd.c +++ b/drivers/scsi/sym53c8xx_2/sym_hipd.c @@ -919,6 +919,8 @@ static int sym_prepare_setting(struct Scsi_Host *shost, struct sym_hcb *np, stru tp->usrflags |= (SYM_DISC_ENABLED | SYM_TAGS_ENABLED); tp->usrtags = SYM_SETUP_MAX_TAG; + tp->usr_width = np->maxwide; + tp->usr_period = 9; sym_nvram_setup_target(tp, i, nvram); |