aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeliang Tang <[email protected]>2016-03-18 13:22:24 +1100
committerKalle Valo <[email protected]>2016-04-07 19:37:38 +0300
commit4679f41322012cf69b1035cde3de81151d2aefec (patch)
treeccbd85377dfb86be8aaf22223464dc1cd5432812
parentd1162f0283f0b4421d1098dd048a5e3cf8b2abb6 (diff)
rtlwifi: use to_delayed_work()
Use to_delayed_work() instead of open-coding it. Signed-off-by: Geliang Tang <[email protected]> [Update commit message] Signed-off-by: Julian Calaby <[email protected]> Acked-by: Larry Finger <[email protected]> Signed-off-by: Kalle Valo <[email protected]>
-rw-r--r--drivers/net/wireless/realtek/rtlwifi/wifi.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/realtek/rtlwifi/wifi.h b/drivers/net/wireless/realtek/rtlwifi/wifi.h
index 93bd7fcd2b61..389dc47776c0 100644
--- a/drivers/net/wireless/realtek/rtlwifi/wifi.h
+++ b/drivers/net/wireless/realtek/rtlwifi/wifi.h
@@ -2870,7 +2870,7 @@ value to host byte ordering.*/
(ppsc->cur_ps_level |= _ps_flg)
#define container_of_dwork_rtl(x, y, z) \
- container_of(container_of(x, struct delayed_work, work), y, z)
+ container_of(to_delayed_work(x), y, z)
#define FILL_OCTET_STRING(_os, _octet, _len) \
(_os).octet = (u8 *)(_octet); \