diff options
author | Pavel Roskin <proski@gnu.org> | 2008-07-06 09:12:30 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-07-08 14:16:05 -0400 |
commit | 0ac2a00c1035c749b720c4d817beea1795f02d47 (patch) | |
tree | 58c73edf5ea15fa6ac48d6e146139d8ece3d6142 /drivers/net/wireless | |
parent | 70197ede33134725f3e2e606fcabc28b0a4549a3 (diff) |
hostap: don't compile prism2_suspend() for hostap_pci without CONFIG_PM
Signed-off-by: Pavel Roskin <proski@gnu.org>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless')
-rw-r--r-- | drivers/net/wireless/hostap/hostap_hw.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/hostap/hostap_hw.c b/drivers/net/wireless/hostap/hostap_hw.c index 6c158a569485..09004a632ae7 100644 --- a/drivers/net/wireless/hostap/hostap_hw.c +++ b/drivers/net/wireless/hostap/hostap_hw.c | |||
@@ -3417,7 +3417,7 @@ static void prism2_free_local_data(struct net_device *dev) | |||
3417 | } | 3417 | } |
3418 | 3418 | ||
3419 | 3419 | ||
3420 | #ifndef PRISM2_PLX | 3420 | #if (defined(PRISM2_PCI) && defined(CONFIG_PM)) || defined(PRISM2_PCCARD) |
3421 | static void prism2_suspend(struct net_device *dev) | 3421 | static void prism2_suspend(struct net_device *dev) |
3422 | { | 3422 | { |
3423 | struct hostap_interface *iface; | 3423 | struct hostap_interface *iface; |
@@ -3436,7 +3436,7 @@ static void prism2_suspend(struct net_device *dev) | |||
3436 | /* Disable hardware and firmware */ | 3436 | /* Disable hardware and firmware */ |
3437 | prism2_hw_shutdown(dev, 0); | 3437 | prism2_hw_shutdown(dev, 0); |
3438 | } | 3438 | } |
3439 | #endif /* PRISM2_PLX */ | 3439 | #endif /* (PRISM2_PCI && CONFIG_PM) || PRISM2_PCCARD */ |
3440 | 3440 | ||
3441 | 3441 | ||
3442 | /* These might at some point be compiled separately and used as separate | 3442 | /* These might at some point be compiled separately and used as separate |