Symbol: cf_cmd
drivers/net/ethernet/i825xx/82596.c
1451
if (wait_cfg(dev, &lp->cf_cmd.cmd, 1000, "config change request timed out"))
drivers/net/ethernet/i825xx/82596.c
1454
if ((dev->flags & IFF_PROMISC) && !(lp->cf_cmd.i596_config[8] & 0x01)) {
drivers/net/ethernet/i825xx/82596.c
1455
lp->cf_cmd.i596_config[8] |= 0x01;
drivers/net/ethernet/i825xx/82596.c
1458
if (!(dev->flags & IFF_PROMISC) && (lp->cf_cmd.i596_config[8] & 0x01)) {
drivers/net/ethernet/i825xx/82596.c
1459
lp->cf_cmd.i596_config[8] &= ~0x01;
drivers/net/ethernet/i825xx/82596.c
1462
if ((dev->flags & IFF_ALLMULTI) && (lp->cf_cmd.i596_config[11] & 0x20)) {
drivers/net/ethernet/i825xx/82596.c
1463
lp->cf_cmd.i596_config[11] &= ~0x20;
drivers/net/ethernet/i825xx/82596.c
1466
if (!(dev->flags & IFF_ALLMULTI) && !(lp->cf_cmd.i596_config[11] & 0x20)) {
drivers/net/ethernet/i825xx/82596.c
1467
lp->cf_cmd.i596_config[11] |= 0x20;
drivers/net/ethernet/i825xx/82596.c
1471
lp->cf_cmd.cmd.command = CmdConfigure;
drivers/net/ethernet/i825xx/82596.c
1472
i596_add_cmd(dev, &lp->cf_cmd.cmd);
drivers/net/ethernet/i825xx/82596.c
320
struct cf_cmd cf_cmd;
drivers/net/ethernet/i825xx/82596.c
708
memcpy(lp->cf_cmd.i596_config, init_setup, 14);
drivers/net/ethernet/i825xx/82596.c
709
lp->cf_cmd.cmd.command = CmdConfigure;
drivers/net/ethernet/i825xx/82596.c
710
i596_add_cmd(dev, &lp->cf_cmd.cmd);
drivers/net/ethernet/i825xx/lib82596.c
1362
!(dma->cf_cmd.i596_config[8] & 0x01)) {
drivers/net/ethernet/i825xx/lib82596.c
1363
dma->cf_cmd.i596_config[8] |= 0x01;
drivers/net/ethernet/i825xx/lib82596.c
1367
(dma->cf_cmd.i596_config[8] & 0x01)) {
drivers/net/ethernet/i825xx/lib82596.c
1368
dma->cf_cmd.i596_config[8] &= ~0x01;
drivers/net/ethernet/i825xx/lib82596.c
1372
(dma->cf_cmd.i596_config[11] & 0x20)) {
drivers/net/ethernet/i825xx/lib82596.c
1373
dma->cf_cmd.i596_config[11] &= ~0x20;
drivers/net/ethernet/i825xx/lib82596.c
1377
!(dma->cf_cmd.i596_config[11] & 0x20)) {
drivers/net/ethernet/i825xx/lib82596.c
1378
dma->cf_cmd.i596_config[11] |= 0x20;
drivers/net/ethernet/i825xx/lib82596.c
1382
if (dma->cf_cmd.cmd.command)
drivers/net/ethernet/i825xx/lib82596.c
1387
dma->cf_cmd.cmd.command = SWAP16(CmdConfigure);
drivers/net/ethernet/i825xx/lib82596.c
1388
dma_sync_dev(dev, &dma->cf_cmd, sizeof(struct cf_cmd));
drivers/net/ethernet/i825xx/lib82596.c
1389
i596_add_cmd(dev, &dma->cf_cmd.cmd);
drivers/net/ethernet/i825xx/lib82596.c
304
struct cf_cmd cf_cmd __attribute__((aligned(32)));
drivers/net/ethernet/i825xx/lib82596.c
630
memcpy(dma->cf_cmd.i596_config, init_setup, 14);
drivers/net/ethernet/i825xx/lib82596.c
631
dma->cf_cmd.cmd.command = SWAP16(CmdConfigure);
drivers/net/ethernet/i825xx/lib82596.c
632
dma_sync_dev(dev, &(dma->cf_cmd), sizeof(struct cf_cmd));
drivers/net/ethernet/i825xx/lib82596.c
633
i596_add_cmd(dev, &dma->cf_cmd.cmd);