@@ -91,31 +91,31 @@ MODULE_DEVICE_TABLE(pci, isci_id_table);
91
91
92
92
/* linux isci specific settings */
93
93
94
- unsigned char no_outbound_task_to = 2 ;
94
+ static unsigned char no_outbound_task_to = 2 ;
95
95
module_param (no_outbound_task_to , byte , 0 );
96
96
MODULE_PARM_DESC (no_outbound_task_to , "No Outbound Task Timeout (1us incr)" );
97
97
98
- u16 ssp_max_occ_to = 20 ;
98
+ static u16 ssp_max_occ_to = 20 ;
99
99
module_param (ssp_max_occ_to , ushort , 0 );
100
100
MODULE_PARM_DESC (ssp_max_occ_to , "SSP Max occupancy timeout (100us incr)" );
101
101
102
- u16 stp_max_occ_to = 5 ;
102
+ static u16 stp_max_occ_to = 5 ;
103
103
module_param (stp_max_occ_to , ushort , 0 );
104
104
MODULE_PARM_DESC (stp_max_occ_to , "STP Max occupancy timeout (100us incr)" );
105
105
106
- u16 ssp_inactive_to = 5 ;
106
+ static u16 ssp_inactive_to = 5 ;
107
107
module_param (ssp_inactive_to , ushort , 0 );
108
108
MODULE_PARM_DESC (ssp_inactive_to , "SSP inactivity timeout (100us incr)" );
109
109
110
- u16 stp_inactive_to = 5 ;
110
+ static u16 stp_inactive_to = 5 ;
111
111
module_param (stp_inactive_to , ushort , 0 );
112
112
MODULE_PARM_DESC (stp_inactive_to , "STP inactivity timeout (100us incr)" );
113
113
114
- unsigned char phy_gen = SCIC_SDS_PARM_GEN2_SPEED ;
114
+ static unsigned char phy_gen = SCIC_SDS_PARM_GEN2_SPEED ;
115
115
module_param (phy_gen , byte , 0 );
116
116
MODULE_PARM_DESC (phy_gen , "PHY generation (1: 1.5Gbps 2: 3.0Gbps 3: 6.0Gbps)" );
117
117
118
- unsigned char max_concurr_spinup ;
118
+ static unsigned char max_concurr_spinup ;
119
119
module_param (max_concurr_spinup , byte , 0 );
120
120
MODULE_PARM_DESC (max_concurr_spinup , "Max concurrent device spinup" );
121
121
0 commit comments