commit | 8b9733c1ad884548ba6417fee239e54693719f41 | [log] [tgz] |
---|---|---|
author | Vaishali Thakkar <vthakkar1994@gmail.com> | Wed Mar 11 13:51:36 2015 +0530 |
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | Mon Mar 16 15:59:15 2015 +0100 |
tree | 99683f0f94d15db5f245f19173156c27a73a7d43 | |
parent | 453ce99c26923a51740c0a4e19a75c4641b17a10 [diff] |
Staging: rtl8192e: Eliminate use of MSECS macro Use msecs_to_jiffies instead of driver specific macro MSECS. This is done using Coccinelle and semantic patch used for this is as follows: @@expression t;@@ - MSECS(t) + msecs_to_jiffies(t) Signed-off-by: Vaishali Thakkar <vthakkar1994@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>