summaryrefslogtreecommitdiffstats
path: root/drivers/staging/rtl8712/rtl871x_led.h
diff options
context:
space:
mode:
authorJames A Shackleford2014-07-09 21:10:47 +0200
committerGreg Kroah-Hartman2014-07-09 21:30:46 +0200
commit143198fd31f8e7d659d1ae7a59b63c35433dad02 (patch)
tree7f9c8d2de3a698f1d09f190b894d9283a36813d0 /drivers/staging/rtl8712/rtl871x_led.h
parentstaging: rtl8712: remove wrapper function _set_workitem() (diff)
downloadkernel-qcow2-linux-143198fd31f8e7d659d1ae7a59b63c35433dad02.tar.gz
kernel-qcow2-linux-143198fd31f8e7d659d1ae7a59b63c35433dad02.tar.xz
kernel-qcow2-linux-143198fd31f8e7d659d1ae7a59b63c35433dad02.zip
staging: rtl8712: remove #define _workitem struct work_struct
_workitem is just a #define for work_struct. Remove the #define and use struct work_struct directly instead. Signed-off-by: James A Shackleford <shack@linux.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rtl8712/rtl871x_led.h')
-rw-r--r--drivers/staging/rtl8712/rtl871x_led.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/rtl8712/rtl871x_led.h b/drivers/staging/rtl8712/rtl871x_led.h
index 1a90c7f4d8f3..eb612053a3dd 100644
--- a/drivers/staging/rtl8712/rtl871x_led.h
+++ b/drivers/staging/rtl8712/rtl871x_led.h
@@ -99,7 +99,7 @@ struct LED_871x {
* either LED_ON or OFF.*/
struct timer_list BlinkTimer; /* Timer object for led blinking.*/
- _workitem BlinkWorkItem; /* Workitem used by BlinkTimer */
+ struct work_struct BlinkWorkItem; /* Workitem used by BlinkTimer */
};
struct led_priv {