Lines Matching defs:duplex
394 * to get the current speed/duplex if link exists.
412 * link. If so, then we want to get the current speed/duplex
424 /* If we are forcing speed/duplex, then we simply return since
431 * of MAC speed/duplex configuration. So we only need to
490 /* Force link-up and also force full-duplex. */
553 /* Force link-up and also force full-duplex. */
996 * speed and duplex were not forced. If the link needed to be forced, then
1007 u16 speed, duplex;
1150 ret_val = mac->ops.get_link_up_info(hw, &speed, &duplex);
1152 e_dbg("Error getting link speed and duplex\n");
1156 if (duplex == HALF_DUPLEX)
1297 * e1000e_get_speed_and_duplex_copper - Retrieve current speed/duplex
1300 * @duplex: stores the current duplex
1302 * Read the status register for the current speed/duplex and store the current
1303 * speed and duplex for copper connections.
1306 u16 *duplex)
1319 *duplex = FULL_DUPLEX;
1321 *duplex = HALF_DUPLEX;
1325 *duplex == FULL_DUPLEX ? "Full" : "Half");
1331 * e1000e_get_speed_and_duplex_fiber_serdes - Retrieve current speed/duplex
1334 * @duplex: stores the current duplex
1336 * Sets the speed and duplex to gigabit full duplex (the only possible option)
1340 *hw, u16 *speed, u16 *duplex)
1343 *duplex = FULL_DUPLEX;