Lines Matching refs:cf_cmd
258 struct cf_cmd { struct
321 struct cf_cmd cf_cmd; member
709 memcpy(lp->cf_cmd.i596_config, init_setup, 14); in init_i596_mem()
710 lp->cf_cmd.cmd.command = CmdConfigure; in init_i596_mem()
711 i596_add_cmd(dev, &lp->cf_cmd.cmd); in init_i596_mem()
1462 if (wait_cfg(dev, &lp->cf_cmd.cmd, 1000, "config change request timed out")) in set_multicast_list()
1465 if ((dev->flags & IFF_PROMISC) && !(lp->cf_cmd.i596_config[8] & 0x01)) { in set_multicast_list()
1466 lp->cf_cmd.i596_config[8] |= 0x01; in set_multicast_list()
1469 if (!(dev->flags & IFF_PROMISC) && (lp->cf_cmd.i596_config[8] & 0x01)) { in set_multicast_list()
1470 lp->cf_cmd.i596_config[8] &= ~0x01; in set_multicast_list()
1473 if ((dev->flags & IFF_ALLMULTI) && (lp->cf_cmd.i596_config[11] & 0x20)) { in set_multicast_list()
1474 lp->cf_cmd.i596_config[11] &= ~0x20; in set_multicast_list()
1477 if (!(dev->flags & IFF_ALLMULTI) && !(lp->cf_cmd.i596_config[11] & 0x20)) { in set_multicast_list()
1478 lp->cf_cmd.i596_config[11] |= 0x20; in set_multicast_list()
1482 lp->cf_cmd.cmd.command = CmdConfigure; in set_multicast_list()
1483 i596_add_cmd(dev, &lp->cf_cmd.cmd); in set_multicast_list()