FactorToSet      1581 drivers/staging/rtl8188eu/hal/usb_halinit.c 			u8 FactorToSet;
FactorToSet      1586 drivers/staging/rtl8188eu/hal/usb_halinit.c 			FactorToSet = *((u8 *)val);
FactorToSet      1587 drivers/staging/rtl8188eu/hal/usb_halinit.c 			if (FactorToSet <= 3) {
FactorToSet      1588 drivers/staging/rtl8188eu/hal/usb_halinit.c 				FactorToSet = 1 << (FactorToSet + 2);
FactorToSet      1589 drivers/staging/rtl8188eu/hal/usb_halinit.c 				if (FactorToSet > 0xf)
FactorToSet      1590 drivers/staging/rtl8188eu/hal/usb_halinit.c 					FactorToSet = 0xf;
FactorToSet      1593 drivers/staging/rtl8188eu/hal/usb_halinit.c 					if ((pRegToSet[index] & 0xf0) > (FactorToSet << 4))
FactorToSet      1594 drivers/staging/rtl8188eu/hal/usb_halinit.c 						pRegToSet[index] = (pRegToSet[index] & 0x0f) | (FactorToSet << 4);
FactorToSet      1596 drivers/staging/rtl8188eu/hal/usb_halinit.c 					if ((pRegToSet[index] & 0x0f) > FactorToSet)
FactorToSet      1597 drivers/staging/rtl8188eu/hal/usb_halinit.c 						pRegToSet[index] = (pRegToSet[index] & 0xf0) | (FactorToSet);