Lines Matching defs:result

1104 	int result;
1130 result = e1000_reset_hw(&Adapter->shared);
1133 if (result != E1000_SUCCESS) {
1368 int result;
1377 result = e1000_reset_hw(hw);
1380 if (result != E1000_SUCCESS) {
1386 result = e1000_validate_nvm_checksum(hw);
1387 if (result < E1000_SUCCESS) {
1393 result = e1000_validate_nvm_checksum(hw);
1397 if (result < E1000_SUCCESS) {
1405 result = 0;
1411 result = e1000g_find_mac_address(Adapter);
1414 if (!result) {
1416 result = e1000_read_mac_addr(hw);
1420 if (result < E1000_SUCCESS) {
1523 result = e1000_reset_hw(hw);
1526 if (result != E1000_SUCCESS) {
1547 result = e1000_init_hw(hw);
1550 if (result < E1000_SUCCESS) {
2031 int result;
2043 result = e1000_reset_hw(&Adapter->shared);
2046 if (result != E1000_SUCCESS) {
2797 int result;
2802 result = ECANCELED;
2806 result = (add) ? multicst_add(Adapter, addr)
2811 return (result);
3662 long result;
3670 (void) ddi_strtol(pr_val, (char **)NULL, 0, &result);
3671 if (result < MIN_TX_BCOPY_THRESHOLD ||
3672 result > MAX_TX_BCOPY_THRESHOLD)
3675 Adapter->tx_bcopy_thresh = (uint32_t)result;
3684 (void) ddi_strtol(pr_val, (char **)NULL, 0, &result);
3685 if (result < 0 || result > 1)
3688 Adapter->tx_intr_enable = (result == 1) ?
3708 (void) ddi_strtol(pr_val, (char **)NULL, 0, &result);
3709 if (result < MIN_TX_INTR_DELAY ||
3710 result > MAX_TX_INTR_DELAY)
3713 Adapter->tx_intr_delay = (uint32_t)result;
3729 (void) ddi_strtol(pr_val, (char **)NULL, 0, &result);
3730 if (result < MIN_TX_INTR_ABS_DELAY ||
3731 result > MAX_TX_INTR_ABS_DELAY)
3734 Adapter->tx_intr_abs_delay = (uint32_t)result;
3751 (void) ddi_strtol(pr_val, (char **)NULL, 0, &result);
3752 if (result < MIN_RX_BCOPY_THRESHOLD ||
3753 result > MAX_RX_BCOPY_THRESHOLD)
3756 Adapter->rx_bcopy_thresh = (uint32_t)result;
3764 (void) ddi_strtol(pr_val, (char **)NULL, 0, &result);
3765 if (result < MIN_RX_LIMIT_ON_INTR ||
3766 result > MAX_RX_LIMIT_ON_INTR)
3769 Adapter->rx_limit_onintr = (uint32_t)result;
3777 (void) ddi_strtol(pr_val, (char **)NULL, 0, &result);
3778 if (result < MIN_RX_INTR_DELAY ||
3779 result > MAX_RX_INTR_DELAY)
3782 Adapter->rx_intr_delay = (uint32_t)result;
3798 (void) ddi_strtol(pr_val, (char **)NULL, 0, &result);
3799 if (result < MIN_RX_INTR_ABS_DELAY ||
3800 result > MAX_RX_INTR_ABS_DELAY)
3803 Adapter->rx_intr_abs_delay = (uint32_t)result;
3820 (void) ddi_strtol(pr_val, (char **)NULL, 0, &result);
3821 if (result < MIN_INTR_THROTTLING ||
3822 result > MAX_INTR_THROTTLING)
3827 (uint32_t)result;
3846 (void) ddi_strtol(pr_val, (char **)NULL, 0, &result);
3847 if (result < 0 || result > 1)
3851 Adapter->intr_adaptive = (result == 1) ?
4958 * link as a result.