cf_cmd            321 drivers/net/ethernet/i825xx/82596.c 	struct cf_cmd cf_cmd;
cf_cmd            709 drivers/net/ethernet/i825xx/82596.c 	memcpy(lp->cf_cmd.i596_config, init_setup, 14);
cf_cmd            710 drivers/net/ethernet/i825xx/82596.c 	lp->cf_cmd.cmd.command = CmdConfigure;
cf_cmd            711 drivers/net/ethernet/i825xx/82596.c 	i596_add_cmd(dev, &lp->cf_cmd.cmd);
cf_cmd           1462 drivers/net/ethernet/i825xx/82596.c 	if (wait_cfg(dev, &lp->cf_cmd.cmd, 1000, "config change request timed out"))
cf_cmd           1465 drivers/net/ethernet/i825xx/82596.c 	if ((dev->flags & IFF_PROMISC) && !(lp->cf_cmd.i596_config[8] & 0x01)) {
cf_cmd           1466 drivers/net/ethernet/i825xx/82596.c 		lp->cf_cmd.i596_config[8] |= 0x01;
cf_cmd           1469 drivers/net/ethernet/i825xx/82596.c 	if (!(dev->flags & IFF_PROMISC) && (lp->cf_cmd.i596_config[8] & 0x01)) {
cf_cmd           1470 drivers/net/ethernet/i825xx/82596.c 		lp->cf_cmd.i596_config[8] &= ~0x01;
cf_cmd           1473 drivers/net/ethernet/i825xx/82596.c 	if ((dev->flags & IFF_ALLMULTI) && (lp->cf_cmd.i596_config[11] & 0x20)) {
cf_cmd           1474 drivers/net/ethernet/i825xx/82596.c 		lp->cf_cmd.i596_config[11] &= ~0x20;
cf_cmd           1477 drivers/net/ethernet/i825xx/82596.c 	if (!(dev->flags & IFF_ALLMULTI) && !(lp->cf_cmd.i596_config[11] & 0x20)) {
cf_cmd           1478 drivers/net/ethernet/i825xx/82596.c 		lp->cf_cmd.i596_config[11] |= 0x20;
cf_cmd           1482 drivers/net/ethernet/i825xx/82596.c 		lp->cf_cmd.cmd.command = CmdConfigure;
cf_cmd           1483 drivers/net/ethernet/i825xx/82596.c 		i596_add_cmd(dev, &lp->cf_cmd.cmd);
cf_cmd            305 drivers/net/ethernet/i825xx/lib82596.c 	struct cf_cmd cf_cmd			__attribute__((aligned(32)));
cf_cmd            603 drivers/net/ethernet/i825xx/lib82596.c 	memcpy(dma->cf_cmd.i596_config, init_setup, 14);
cf_cmd            604 drivers/net/ethernet/i825xx/lib82596.c 	dma->cf_cmd.cmd.command = SWAP16(CmdConfigure);
cf_cmd            605 drivers/net/ethernet/i825xx/lib82596.c 	DMA_WBACK(dev, &(dma->cf_cmd), sizeof(struct cf_cmd));
cf_cmd            606 drivers/net/ethernet/i825xx/lib82596.c 	i596_add_cmd(dev, &dma->cf_cmd.cmd);
cf_cmd           1349 drivers/net/ethernet/i825xx/lib82596.c 	    !(dma->cf_cmd.i596_config[8] & 0x01)) {
cf_cmd           1350 drivers/net/ethernet/i825xx/lib82596.c 		dma->cf_cmd.i596_config[8] |= 0x01;
cf_cmd           1354 drivers/net/ethernet/i825xx/lib82596.c 	    (dma->cf_cmd.i596_config[8] & 0x01)) {
cf_cmd           1355 drivers/net/ethernet/i825xx/lib82596.c 		dma->cf_cmd.i596_config[8] &= ~0x01;
cf_cmd           1359 drivers/net/ethernet/i825xx/lib82596.c 	    (dma->cf_cmd.i596_config[11] & 0x20)) {
cf_cmd           1360 drivers/net/ethernet/i825xx/lib82596.c 		dma->cf_cmd.i596_config[11] &= ~0x20;
cf_cmd           1364 drivers/net/ethernet/i825xx/lib82596.c 	    !(dma->cf_cmd.i596_config[11] & 0x20)) {
cf_cmd           1365 drivers/net/ethernet/i825xx/lib82596.c 		dma->cf_cmd.i596_config[11] |= 0x20;
cf_cmd           1369 drivers/net/ethernet/i825xx/lib82596.c 		if (dma->cf_cmd.cmd.command)
cf_cmd           1374 drivers/net/ethernet/i825xx/lib82596.c 			dma->cf_cmd.cmd.command = SWAP16(CmdConfigure);
cf_cmd           1375 drivers/net/ethernet/i825xx/lib82596.c 			DMA_WBACK_INV(dev, &dma->cf_cmd, sizeof(struct cf_cmd));
cf_cmd           1376 drivers/net/ethernet/i825xx/lib82596.c 			i596_add_cmd(dev, &dma->cf_cmd.cmd);