Lines Matching refs:wol
2311 static void rtl8139_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol) in rtl8139_get_wol() argument
2321 wol->supported = WAKE_PHY | WAKE_MAGIC in rtl8139_get_wol()
2324 wol->wolopts = 0; in rtl8139_get_wol()
2326 wol->wolopts |= WAKE_PHY; in rtl8139_get_wol()
2328 wol->wolopts |= WAKE_MAGIC; in rtl8139_get_wol()
2332 wol->wolopts |= WAKE_UCAST; in rtl8139_get_wol()
2334 wol->wolopts |= WAKE_MCAST; in rtl8139_get_wol()
2336 wol->wolopts |= WAKE_BCAST; in rtl8139_get_wol()
2345 static int rtl8139_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol) in rtl8139_set_wol() argument
2356 if (wol->wolopts & ~support) in rtl8139_set_wol()
2361 if (wol->wolopts & WAKE_PHY) in rtl8139_set_wol()
2363 if (wol->wolopts & WAKE_MAGIC) in rtl8139_set_wol()
2373 if (wol->wolopts & WAKE_UCAST) in rtl8139_set_wol()
2375 if (wol->wolopts & WAKE_MCAST) in rtl8139_set_wol()
2377 if (wol->wolopts & WAKE_BCAST) in rtl8139_set_wol()