aboutsummaryrefslogtreecommitdiff
path: root/drivers/staging/rtl8192e/rtllib.h
diff options
context:
space:
mode:
authorLarry Finger <Larry.Finger@lwfinger.net>2011-07-19 00:46:24 -0500
committerLarry Finger <Larry.Finger@lwfinger.net>2011-08-24 01:53:26 -0500
commitedc4b2c5708547de030ff73ffc771ad498209206 (patch)
tree2c394e09799ccc663276c2abbf07476b69c1ba5b /drivers/staging/rtl8192e/rtllib.h
parentfc22c052e20496935ee165609ed814eed336cd4a (diff)
staging: rtl8192e: Convert delayed_work_struct_rsl to struct delayed_work and work_struct_rsl to struct work_struct
Remove typedef from struct. Rename struct. Rename uses. Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
Diffstat (limited to 'drivers/staging/rtl8192e/rtllib.h')
-rw-r--r--drivers/staging/rtl8192e/rtllib.h26
1 files changed, 12 insertions, 14 deletions
diff --git a/drivers/staging/rtl8192e/rtllib.h b/drivers/staging/rtl8192e/rtllib.h
index 296488ef4f9b..08b6770dca6a 100644
--- a/drivers/staging/rtl8192e/rtllib.h
+++ b/drivers/staging/rtl8192e/rtllib.h
@@ -79,11 +79,9 @@
#define EXPORT_SYMBOL_RSL(x) EXPORT_SYMBOL(x)
- typedef struct delayed_work delayed_work_struct_rsl;
#define queue_delayed_work_rsl(x,y,z) queue_delayed_work(x,y,z)
#define INIT_DELAYED_WORK_RSL(x,y,z) INIT_DELAYED_WORK(x,y)
- typedef struct work_struct work_struct_rsl;
#define queue_work_rsl(x,y) queue_work(x,y)
#define INIT_WORK_RSL(x,y,z) INIT_WORK(x,y)
@@ -1864,7 +1862,7 @@ struct rt_pwr_save_ctrl {
bool bHaltAdapterClkRQ;
bool bSwRfProcessing;
RT_RF_POWER_STATE eInactivePowerState;
- work_struct_rsl InactivePsWorkItem;
+ struct work_struct InactivePsWorkItem;
struct timer_list InactivePsTimer;
IPS_CALLBACK_FUNCION ReturnPoint;
@@ -2398,17 +2396,17 @@ struct rtllib_device {
/* used if IEEE_SOFTMAC_BEACONS is set */
struct timer_list beacon_timer;
u8 need_sw_enc;
- work_struct_rsl associate_complete_wq;
- work_struct_rsl ips_leave_wq;
- delayed_work_struct_rsl associate_procedure_wq;
- delayed_work_struct_rsl softmac_scan_wq;
- delayed_work_struct_rsl softmac_hint11d_wq;
- delayed_work_struct_rsl associate_retry_wq;
- delayed_work_struct_rsl start_ibss_wq;
- delayed_work_struct_rsl hw_wakeup_wq;
- delayed_work_struct_rsl hw_sleep_wq;
- delayed_work_struct_rsl link_change_wq;
- work_struct_rsl wx_sync_scan_wq;
+ struct work_struct associate_complete_wq;
+ struct work_struct ips_leave_wq;
+ struct delayed_work associate_procedure_wq;
+ struct delayed_work softmac_scan_wq;
+ struct delayed_work softmac_hint11d_wq;
+ struct delayed_work associate_retry_wq;
+ struct delayed_work start_ibss_wq;
+ struct delayed_work hw_wakeup_wq;
+ struct delayed_work hw_sleep_wq;
+ struct delayed_work link_change_wq;
+ struct work_struct wx_sync_scan_wq;
struct workqueue_struct *wq;