Lines Matching refs:value
270 * map the scrubbing bandwidth to a hardware register value. The 'set'
271 * operation finds the 'matching or higher value'. Note that scrubbing
280 u16 scrubval; /* register value for scrub rate */
285 * so the scrubbing bandwidth value isn't all that important - scrubbing is
1001 /* Translate the desired scrub rate to a e752x/3100 register value.
1003 * desired rate and program the cooresponding register value.
1017 /* Convert current scrub rate value into byte/sec bandwidth */
1041 "Invalid sdram scrub control value: 0x%x\n", scrubval);
1075 u8 value;
1100 pci_read_config_byte(pdev, E752X_DRB + index, &value);
1102 cumul_size = value << (25 + drc_drbg - PAGE_SHIFT);
1143 u8 value, last, row;
1149 pci_read_config_byte(pdev, E752X_DRB + index, &value);
1151 if (value == last) {
1158 last = value;
1159 /* test the next value to see if the dimm is double
1163 &value);
1167 pvt->map[index + 1] = (value == last) ? 0xff : row;
1169 last = value;