Commit e31273ee authored by Paul Bolle's avatar Paul Bolle Committed by Greg Kroah-Hartman

staging: rtl8192u: remove checks for CONFIG_RTL8192_PM

When the rtl8192u driver was added in v2.6.33 its code contained checks
for CONFIG_RTL8192_PM. The related Kconfig symbol didn't exist then. It
still doesn't exist now. Remove these checks.
Signed-off-by: default avatarPaul Bolle <pebolle@tiscali.nl>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent d3921a03
...@@ -97,10 +97,6 @@ double __extendsfdf2(float a) ...@@ -97,10 +97,6 @@ double __extendsfdf2(float a)
#include <linux/seq_file.h> #include <linux/seq_file.h>
// FIXME: check if 2.6.7 is ok // FIXME: check if 2.6.7 is ok
#ifdef CONFIG_RTL8192_PM
#include "r8192_pm.h"
#endif
#include "dot11d.h" #include "dot11d.h"
//set here to open your trace code. //WB //set here to open your trace code. //WB
u32 rt_global_debug_component = COMP_DOWN | u32 rt_global_debug_component = COMP_DOWN |
...@@ -159,13 +155,8 @@ static struct usb_driver rtl8192_usb_driver = { ...@@ -159,13 +155,8 @@ static struct usb_driver rtl8192_usb_driver = {
.id_table = rtl8192_usb_id_tbl, /* PCI_ID table */ .id_table = rtl8192_usb_id_tbl, /* PCI_ID table */
.probe = rtl8192_usb_probe, /* probe fn */ .probe = rtl8192_usb_probe, /* probe fn */
.disconnect = rtl8192_usb_disconnect, /* remove fn */ .disconnect = rtl8192_usb_disconnect, /* remove fn */
#ifdef CONFIG_RTL8192_PM
.suspend = rtl8192_suspend, /* PM suspend fn */
.resume = rtl8192_resume, /* PM resume fn */
#else
.suspend = NULL, /* PM suspend fn */ .suspend = NULL, /* PM suspend fn */
.resume = NULL, /* PM resume fn */ .resume = NULL, /* PM resume fn */
#endif
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment