From: Matthew Wilcox Date: Tue, 28 Feb 2006 13:28:15 +0000 (-0700) Subject: [SCSI] Fix uninitialised width and speed in sym2 X-Git-Tag: v2.6.16.28-rc1~436^2~1 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=23ff51e9fe24f98c1053ac1cdded434012eee342;p=karo-tx-linux.git [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 Signed-off-by: James Bottomley --- 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);