Lines Matching +full:6 +full:bd
77 * Bit 7 6 5 4 3 2 1 0
246 int bd = adapter->bd_number; in e1000_check_options() local
248 if (bd >= E1000_MAX_NIC) { in e1000_check_options()
250 "using defaults for all values\n", bd); in e1000_check_options()
270 if (num_TxDescriptors > bd) { in e1000_check_options()
271 tx_ring->count = TxDescriptors[bd]; in e1000_check_options()
299 if (num_RxDescriptors > bd) { in e1000_check_options()
300 rx_ring->count = RxDescriptors[bd]; in e1000_check_options()
318 if (num_XsumRX > bd) { in e1000_check_options()
319 unsigned int rx_csum = XsumRX[bd]; in e1000_check_options()
345 if (num_FlowControl > bd) { in e1000_check_options()
346 unsigned int fc = FlowControl[bd]; in e1000_check_options()
363 if (num_TxIntDelay > bd) { in e1000_check_options()
364 adapter->tx_int_delay = TxIntDelay[bd]; in e1000_check_options()
381 if (num_TxAbsIntDelay > bd) { in e1000_check_options()
382 adapter->tx_abs_int_delay = TxAbsIntDelay[bd]; in e1000_check_options()
399 if (num_RxIntDelay > bd) { in e1000_check_options()
400 adapter->rx_int_delay = RxIntDelay[bd]; in e1000_check_options()
417 if (num_RxAbsIntDelay > bd) { in e1000_check_options()
418 adapter->rx_abs_int_delay = RxAbsIntDelay[bd]; in e1000_check_options()
435 if (num_InterruptThrottleRate > bd) { in e1000_check_options()
436 adapter->itr = InterruptThrottleRate[bd]; in e1000_check_options()
482 if (num_SmartPowerDownEnable > bd) { in e1000_check_options()
483 unsigned int spd = SmartPowerDownEnable[bd]; in e1000_check_options()
512 int bd = adapter->bd_number; in e1000_check_fiber_options() local
513 if (num_Speed > bd) { in e1000_check_fiber_options()
518 if (num_Duplex > bd) { in e1000_check_fiber_options()
523 if ((num_AutoNeg > bd) && (AutoNeg[bd] != 0x20)) { in e1000_check_fiber_options()
539 int bd = adapter->bd_number; in e1000_check_copper_options() local
557 if (num_Speed > bd) { in e1000_check_copper_options()
558 speed = Speed[bd]; in e1000_check_copper_options()
579 if (num_Duplex > bd) { in e1000_check_copper_options()
580 dplx = Duplex[bd]; in e1000_check_copper_options()
587 if ((num_AutoNeg > bd) && (speed != 0 || dplx != 0)) { in e1000_check_copper_options()
635 if (num_AutoNeg > bd) { in e1000_check_copper_options()
636 an = AutoNeg[bd]; in e1000_check_copper_options()
647 if ((num_Speed > bd) && (speed != 0 || dplx != 0)) in e1000_check_copper_options()