diff options
author | Francois Romieu <romieu@fr.zoreil.com> | 2007-10-04 16:36:14 -0400 |
---|---|---|
committer | Francois Romieu <romieu@fr.zoreil.com> | 2007-10-18 15:24:34 -0400 |
commit | f23e7fdad166a4968f1f7f56964b75acfdcf57a4 (patch) | |
tree | 5dc323c47d013cc474a9da994c5ac7ea6cfe4eab /drivers/net/r8169.c | |
parent | 53edbecd589520833a89b57af1ee636fdc7544a5 (diff) |
r8169: convert bitfield to plain enum mask
Signed-off-by: Francois Romieu <romieu@fr.zoreil.com>
Cc: Edward Hsu <edward_hsu@realtek.com.tw>
Diffstat (limited to 'drivers/net/r8169.c')
-rw-r--r-- | drivers/net/r8169.c | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/drivers/net/r8169.c b/drivers/net/r8169.c index 9c11087d3e87..16ecba15830d 100644 --- a/drivers/net/r8169.c +++ b/drivers/net/r8169.c | |||
@@ -381,6 +381,10 @@ struct ring_info { | |||
381 | u8 __pad[sizeof(void *) - sizeof(u32)]; | 381 | u8 __pad[sizeof(void *) - sizeof(u32)]; |
382 | }; | 382 | }; |
383 | 383 | ||
384 | enum features { | ||
385 | RTL_FEATURE_WOL = (1 << 0), | ||
386 | }; | ||
387 | |||
384 | struct rtl8169_private { | 388 | struct rtl8169_private { |
385 | void __iomem *mmio_addr; /* memory map physical address */ | 389 | void __iomem *mmio_addr; /* memory map physical address */ |
386 | struct pci_dev *pci_dev; /* Index of PCI device */ | 390 | struct pci_dev *pci_dev; /* Index of PCI device */ |
@@ -421,7 +425,7 @@ struct rtl8169_private { | |||
421 | unsigned int (*phy_reset_pending)(void __iomem *); | 425 | unsigned int (*phy_reset_pending)(void __iomem *); |
422 | unsigned int (*link_ok)(void __iomem *); | 426 | unsigned int (*link_ok)(void __iomem *); |
423 | struct delayed_work task; | 427 | struct delayed_work task; |
424 | unsigned wol_enabled : 1; | 428 | unsigned features; |
425 | }; | 429 | }; |
426 | 430 | ||
427 | MODULE_AUTHOR("Realtek and the Linux r8169 crew <netdev@vger.kernel.org>"); | 431 | MODULE_AUTHOR("Realtek and the Linux r8169 crew <netdev@vger.kernel.org>"); |
@@ -627,7 +631,10 @@ static int rtl8169_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol) | |||
627 | 631 | ||
628 | RTL_W8(Cfg9346, Cfg9346_Lock); | 632 | RTL_W8(Cfg9346, Cfg9346_Lock); |
629 | 633 | ||
630 | tp->wol_enabled = (wol->wolopts) ? 1 : 0; | 634 | if (wol->wolopts) |
635 | tp->features |= RTL_FEATURE_WOL; | ||
636 | else | ||
637 | tp->features &= ~RTL_FEATURE_WOL; | ||
631 | 638 | ||
632 | spin_unlock_irq(&tp->lock); | 639 | spin_unlock_irq(&tp->lock); |
633 | 640 | ||
@@ -3045,7 +3052,8 @@ static int rtl8169_suspend(struct pci_dev *pdev, pm_message_t state) | |||
3045 | 3052 | ||
3046 | out_pci_suspend: | 3053 | out_pci_suspend: |
3047 | pci_save_state(pdev); | 3054 | pci_save_state(pdev); |
3048 | pci_enable_wake(pdev, pci_choose_state(pdev, state), tp->wol_enabled); | 3055 | pci_enable_wake(pdev, pci_choose_state(pdev, state), |
3056 | (tp->features & RTL_FEATURE_WOL) ? 1 : 0); | ||
3049 | pci_set_power_state(pdev, pci_choose_state(pdev, state)); | 3057 | pci_set_power_state(pdev, pci_choose_state(pdev, state)); |
3050 | 3058 | ||
3051 | return 0; | 3059 | return 0; |