[PATCH 4/9] staging: rtl8192e: Remove unused macro queue_delayed_work_rsl and queu..

Philipp Hortmann posted 9 patches 2 years, 11 months ago
There is a newer version of this series
[PATCH 4/9] staging: rtl8192e: Remove unused macro queue_delayed_work_rsl and queu..
Posted by Philipp Hortmann 2 years, 11 months ago
Remove unused macro queue_delayed_work_rsl and queue_work_rsl.

Signed-off-by: Philipp Hortmann <philipp.g.hortmann@gmail.com>
---
 drivers/staging/rtl8192e/rtllib.h | 2 --
 1 file changed, 2 deletions(-)

diff --git a/drivers/staging/rtl8192e/rtllib.h b/drivers/staging/rtl8192e/rtllib.h
index cb904fc4f574..8965bb605eaa 100644
--- a/drivers/staging/rtl8192e/rtllib.h
+++ b/drivers/staging/rtl8192e/rtllib.h
@@ -62,10 +62,8 @@
 #define IW_CUSTOM_MAX	256	/* In bytes */
 #endif
 
-#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)
 
-#define queue_work_rsl(x, y) queue_work(x, y)
 #define INIT_WORK_RSL(x, y, z) INIT_WORK(x, y)
 
 #define container_of_work_rsl(x, y, z) container_of(x, y, z)
-- 
2.39.2
Re: [PATCH 4/9] staging: rtl8192e: Remove unused macro queue_delayed_work_rsl and queu..
Posted by Greg Kroah-Hartman 2 years, 10 months ago
On Fri, Mar 17, 2023 at 08:13:32PM +0100, Philipp Hortmann wrote:
> Remove unused macro queue_delayed_work_rsl and queue_work_rsl.
> 
> Signed-off-by: Philipp Hortmann <philipp.g.hortmann@gmail.com>

Your subject line here looks odd, with the abbreviation.  Same for the
other commits in this series, please spell the last word out, it's fine
to be a little bit longer to make things more obvious what is going on
(i.e. I have no idea what "f." is in a subject line...)

thanks,

greg k-h