aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/aic7xxx/aic7xxx_osm.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/scsi/aic7xxx/aic7xxx_osm.c')
-rw-r--r--drivers/scsi/aic7xxx/aic7xxx_osm.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/scsi/aic7xxx/aic7xxx_osm.c b/drivers/scsi/aic7xxx/aic7xxx_osm.c
index d0d0b84a31f4..d79a2ae89979 100644
--- a/drivers/scsi/aic7xxx/aic7xxx_osm.c
+++ b/drivers/scsi/aic7xxx/aic7xxx_osm.c
@@ -2429,16 +2429,16 @@ static void ahc_linux_set_dt(struct scsi_target *starget, int dt)
2429 unsigned int ppr_options = tinfo->goal.ppr_options 2429 unsigned int ppr_options = tinfo->goal.ppr_options
2430 & ~MSG_EXT_PPR_DT_REQ; 2430 & ~MSG_EXT_PPR_DT_REQ;
2431 unsigned int period = tinfo->goal.period; 2431 unsigned int period = tinfo->goal.period;
2432 unsigned int width = tinfo->goal.width;
2432 unsigned long flags; 2433 unsigned long flags;
2433 struct ahc_syncrate *syncrate; 2434 struct ahc_syncrate *syncrate;
2434 2435
2435 if (dt) { 2436 if (dt) {
2436 period = 9; /* 12.5ns is the only period valid for DT */
2437 ppr_options |= MSG_EXT_PPR_DT_REQ; 2437 ppr_options |= MSG_EXT_PPR_DT_REQ;
2438 } else if (period == 9) { 2438 if (!width)
2439 ahc_linux_set_width(starget, 1);
2440 } else if (period == 9)
2439 period = 10; /* if resetting DT, period must be >= 25ns */ 2441 period = 10; /* if resetting DT, period must be >= 25ns */
2440 ppr_options &= ~MSG_EXT_PPR_DT_REQ;
2441 }
2442 2442
2443 ahc_compile_devinfo(&devinfo, shost->this_id, starget->id, 0, 2443 ahc_compile_devinfo(&devinfo, shost->this_id, starget->id, 0,
2444 starget->channel + 'A', ROLE_INITIATOR); 2444 starget->channel + 'A', ROLE_INITIATOR);