Lines Matching refs:wol_cfg
689 u32 wol_cfg = 0; in netxen_nic_get_wol() local
697 wol_cfg = NXRD32(adapter, NETXEN_WOL_CONFIG_NV); in netxen_nic_get_wol()
698 if (wol_cfg & (1UL << adapter->portnum)) in netxen_nic_get_wol()
701 wol_cfg = NXRD32(adapter, NETXEN_WOL_CONFIG); in netxen_nic_get_wol()
702 if (wol_cfg & (1UL << adapter->portnum)) in netxen_nic_get_wol()
710 u32 wol_cfg = 0; in netxen_nic_set_wol() local
718 wol_cfg = NXRD32(adapter, NETXEN_WOL_CONFIG_NV); in netxen_nic_set_wol()
719 if (!(wol_cfg & (1 << adapter->portnum))) in netxen_nic_set_wol()
722 wol_cfg = NXRD32(adapter, NETXEN_WOL_CONFIG); in netxen_nic_set_wol()
724 wol_cfg |= 1UL << adapter->portnum; in netxen_nic_set_wol()
726 wol_cfg &= ~(1UL << adapter->portnum); in netxen_nic_set_wol()
727 NXWR32(adapter, NETXEN_WOL_CONFIG, wol_cfg); in netxen_nic_set_wol()