Searched defs:retry_count (Results 1 - 25 of 57) sorted by relevance

123

/drivers/net/wireless/cw1200/
H A Dtxrx.h31 u8 retry_count; member in struct:tx_policy
/drivers/staging/lustre/lnet/klnds/o2iblnd/
H A Do2iblnd_modparams.c91 static int retry_count = 5; variable
92 module_param(retry_count, int, 0644);
93 MODULE_PARM_DESC(retry_count, "Retransmissions when no ACK received");
165 .kib_retry_count = &retry_count,
/drivers/staging/media/omap4iss/
H A Diss_csiphy.c62 u8 retry_count; local
68 retry_count = 0;
75 retry_count++;
77 } while ((reg != power >> 2) && (retry_count < 250));
79 if (retry_count == 250) {
/drivers/media/platform/omap3isp/
H A Dispcsiphy.c136 u8 retry_count; local
141 retry_count = 0;
148 retry_count++;
150 } while ((reg != power >> 2) && (retry_count < 100));
152 if (retry_count == 100) {
/drivers/s390/char/
H A Dsclp_rw.h74 int retry_count; member in struct:sclp_buffer
H A Dsclp_vt220.c42 int retry_count; member in struct:sclp_vt220_request
175 if (++vt220_request->retry_count > SCLP_BUFFER_MAX_RETRY)
188 if (++vt220_request->retry_count > SCLP_BUFFER_MAX_RETRY)
271 request->retry_count = 0;
/drivers/usb/host/
H A Disp1760-if.c178 int retry_count; local
250 retry_count = 20;
252 while ((reg_data != 0xFACE) && retry_count) {
259 retry_count--;
/drivers/usb/wusbcore/
H A Dwusbhc.c216 return sprintf(buf, "%d\n", wusbhc->retry_count);
224 uint8_t retry_count; local
227 result = sscanf(buf, "%hhu", &retry_count);
232 wusbhc->retry_count = max_t(uint8_t, retry_count,
277 wusbhc->retry_count = WUSB_RETRY_COUNT_INFINITE;
H A Dwusbhc.h258 uint8_t retry_count; member in struct:wusbhc
/drivers/watchdog/
H A Dintel_scu_watchdog.c212 int retry_count; local
257 retry_count = 0;
264 if (MAX_RETRY < retry_count++) {
/drivers/scsi/mpt2sas/
H A Dmpt2sas_config.c294 u8 retry_count, issue_host_reset = 0; local
306 retry_count = 0;
343 if (retry_count) {
344 if (retry_count > 2) { /* attempt only 2 retries */
349 ioc->name, __func__, retry_count);
399 retry_count++;
413 if (retry_count)
415 ioc->name, __func__, retry_count);
/drivers/scsi/mpt3sas/
H A Dmpt3sas_config.c294 u8 retry_count, issue_host_reset = 0; local
307 retry_count = 0;
345 if (retry_count) {
346 if (retry_count > 2) { /* attempt only 2 retries */
351 ioc->name, __func__, retry_count);
401 retry_count++;
444 if (retry_count)
446 ioc->name, __func__, retry_count);
/drivers/video/fbdev/msm/
H A Dmddi.c552 int retry_count = 2; local
611 } while (retry_count-- > 0);
/drivers/infiniband/hw/ehca/
H A Dehca_classes_pSeries.h107 u32 retry_count; /* 18 */ member in struct:hcp_modify_qp_control_block
/drivers/media/tuners/
H A Dtuner-xc2028.c720 int rc, retry_count = 0; local
890 if (retry_count < 8) {
892 retry_count++;
/drivers/net/ethernet/ibm/
H A Dibmveth.c917 unsigned int retry_count; local
924 retry_count = 1024;
932 } while ((ret == H_BUSY) && (retry_count--));
/drivers/net/ethernet/intel/e1000e/
H A Dphy.c82 u16 retry_count = 0; local
87 while (retry_count < 2) {
104 retry_count++;
H A Dich8lan.c191 u16 retry_count; local
194 for (retry_count = 0; retry_count < 2; retry_count++) {
/drivers/net/ethernet/intel/ixgbe/
H A Dixgbe_82599.c1821 u32 retry_count; local
1835 for (retry_count = 10; retry_count; retry_count--) {
1844 if (!retry_count)
/drivers/staging/ste_rmi4/
H A Dsynaptics_i2c_rmi4.c233 int retry_count = 0; local
245 if (++retry_count == MAX_RETRY_COUNT)
/drivers/video/fbdev/
H A Dbroadsheetfb.c318 int retry_count = 0; local
330 if (retry_count++ > 100)
/drivers/block/
H A Dcciss_cmd.h211 int retry_count; member in struct:_CommandList_struct
/drivers/infiniband/core/
H A Dcm_msgs.h240 u8 retry_count)
242 req_msg->offset44 = cpu_to_be32((retry_count & 0x7) |
239 cm_req_set_retry_count(struct cm_req_msg *req_msg, u8 retry_count) argument
/drivers/mmc/card/
H A Dblock.c385 u32 retry_count = 0; local
405 } while (++retry_count < retries_max);
407 if (retry_count == retries_max)
/drivers/net/ethernet/intel/e1000/
H A De1000_hw.c3842 u16 retry_count = 0; local
3850 retry_count = 0;
3859 retry_count += 5;
3862 } while (retry_count < EEPROM_MAX_RETRY_SPI);
3867 if (retry_count >= EEPROM_MAX_RETRY_SPI) {

Completed in 783 milliseconds

123