diff options
author | 2016-03-18 13:22:24 +1100 | |
---|---|---|
committer | 2016-04-07 19:37:38 +0300 | |
commit | 4679f41322012cf69b1035cde3de81151d2aefec (patch) | |
tree | ccbd85377dfb86be8aaf22223464dc1cd5432812 | |
parent | wl1251: use to_delayed_work() (diff) | |
download | linux-dev-4679f41322012cf69b1035cde3de81151d2aefec.tar.xz linux-dev-4679f41322012cf69b1035cde3de81151d2aefec.zip |
rtlwifi: use to_delayed_work()
Use to_delayed_work() instead of open-coding it.
Signed-off-by: Geliang Tang <geliangtang@163.com>
[Update commit message]
Signed-off-by: Julian Calaby <julian.calaby@gmail.com>
Acked-by: Larry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
-rw-r--r-- | drivers/net/wireless/realtek/rtlwifi/wifi.h | 2 |
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); \ |