Lines Matching refs:cf_cmd
257 struct cf_cmd { struct
320 struct cf_cmd cf_cmd; member
708 memcpy(lp->cf_cmd.i596_config, init_setup, 14); in init_i596_mem()
709 lp->cf_cmd.cmd.command = CmdConfigure; in init_i596_mem()
710 i596_add_cmd(dev, &lp->cf_cmd.cmd); in init_i596_mem()
1451 if (wait_cfg(dev, &lp->cf_cmd.cmd, 1000, "config change request timed out")) in set_multicast_list()
1454 if ((dev->flags & IFF_PROMISC) && !(lp->cf_cmd.i596_config[8] & 0x01)) { in set_multicast_list()
1455 lp->cf_cmd.i596_config[8] |= 0x01; in set_multicast_list()
1458 if (!(dev->flags & IFF_PROMISC) && (lp->cf_cmd.i596_config[8] & 0x01)) { in set_multicast_list()
1459 lp->cf_cmd.i596_config[8] &= ~0x01; in set_multicast_list()
1462 if ((dev->flags & IFF_ALLMULTI) && (lp->cf_cmd.i596_config[11] & 0x20)) { in set_multicast_list()
1463 lp->cf_cmd.i596_config[11] &= ~0x20; in set_multicast_list()
1466 if (!(dev->flags & IFF_ALLMULTI) && !(lp->cf_cmd.i596_config[11] & 0x20)) { in set_multicast_list()
1467 lp->cf_cmd.i596_config[11] |= 0x20; in set_multicast_list()
1471 lp->cf_cmd.cmd.command = CmdConfigure; in set_multicast_list()
1472 i596_add_cmd(dev, &lp->cf_cmd.cmd); in set_multicast_list()