Lines Matching refs:full_duplex
62 static int full_duplex[MAX_UNITS] = {-1, -1, -1, -1, -1, -1, -1, -1}; variable
122 module_param_array(full_duplex, int, NULL, 0);
129 MODULE_PARM_DESC(full_duplex, "G-NIC full duplex setting(s) (1)");
329 unsigned int full_duplex:1; /* Full-duplex operation requested. */ member
462 np->full_duplex = 1; in yellowfin_init_one()
467 if (find_cnt < MAX_UNITS && full_duplex[find_cnt] > 0) in yellowfin_init_one()
468 np->full_duplex = 1; in yellowfin_init_one()
470 if (np->full_duplex) in yellowfin_init_one()
616 yp->full_duplex = 1; in yellowfin_open()
621 iowrite16(0x101C | (yp->full_duplex ? 2 : 0), ioaddr + Cnfg); in yellowfin_open()
669 yp->full_duplex = mii_duplex(yp->duplex_lock, negotiated); in yellowfin_timer()
671 iowrite16(0x101C | (yp->full_duplex ? 2 : 0), ioaddr + Cnfg); in yellowfin_timer()
1364 np->full_duplex = (value & 0x0100) ? 1 : 0; in netdev_ioctl()