[SCSI] sym2: Disable IU and QAS negotiation

Enabling these features causes problems with some drives, so disable
them until they're debugged

Signed-off-by: Matthew Wilcox <matthew@wil.cx>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>

authored by Matthew Wilcox and committed by James Bottomley 8b2f8138 fb121b06

+4 -1
+4 -1
drivers/scsi/sym53c8xx_2/sym_glue.c
··· 2086 2086 tp->tgoal.check_nego = 1; 2087 2087 } 2088 2088 2089 + #if 0 2089 2090 static void sym2_set_iu(struct scsi_target *starget, int iu) 2090 2091 { 2091 2092 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent); ··· 2112 2111 tp->tgoal.qas = 0; 2113 2112 tp->tgoal.check_nego = 1; 2114 2113 } 2115 - 2114 + #endif 2116 2115 2117 2116 static struct spi_function_template sym2_transport_functions = { 2118 2117 .set_offset = sym2_set_offset, ··· 2123 2122 .show_width = 1, 2124 2123 .set_dt = sym2_set_dt, 2125 2124 .show_dt = 1, 2125 + #if 0 2126 2126 .set_iu = sym2_set_iu, 2127 2127 .show_iu = 1, 2128 2128 .set_qas = sym2_set_qas, 2129 2129 .show_qas = 1, 2130 + #endif 2130 2131 .get_signalling = sym2_get_signalling, 2131 2132 }; 2132 2133