isci: fix "no outbound task timeout" default value

The default should be 5us.  The hardware encodes it in 256ns increments,
so the value should be 20 to approximate a 5us timeout.

Signed-off-by: Tomasz Chudy <Tomasz.Chudy@intel.com>
Signed-off-by: Jacek Danecki <Jacek.Danecki@intel.com>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
This commit is contained in:
Tomasz Chudy 2011-02-23 00:08:49 -08:00 committed by Dan Williams
parent 8f31550c77
commit 06fdb32862

View file

@ -1997,8 +1997,7 @@ static void scic_sds_controller_set_default_config_parameters(
this_controller->user_parameters.sds1.ssp_inactivity_timeout = 5;
this_controller->user_parameters.sds1.stp_max_occupancy_timeout = 5;
this_controller->user_parameters.sds1.ssp_max_occupancy_timeout = 20;
this_controller->user_parameters.sds1.no_outbound_task_timeout = 5;
this_controller->user_parameters.sds1.no_outbound_task_timeout = 20;
}