[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20230320103441.6537-1-eng.mennamahmoud.mm@gmail.com>
Date: Mon, 20 Mar 2023 12:34:41 +0200
From: Menna Mahmoud <eng.mennamahmoud.mm@...il.com>
To: gregkh@...uxfoundation.org
Cc: outreachy@...ts.linux.dev, linux-kernel@...r.kernel.org,
linux-staging@...ts.linux.dev, eng.mennamahmoud.mm@...il.com,
Julia Lawall <julia.lawall@...ia.fr>
Subject: [PATCH] staging: rtl8723bs: use inline functions for dev_to_sdio_func
Convert `dev_to_sdio_func` macro into a static inline function.
it is not great to have macro that use `container_of` macro,
because from looking at the definition one cannot tell
what type it applies to.
One can get the same benefit from an efficiency point of view
by making an inline function.
Suggested-by: Julia Lawall <julia.lawall@...ia.fr>
Signed-off-by: Menna Mahmoud <eng.mennamahmoud.mm@...il.com>
---
drivers/staging/rtl8723bs/os_dep/sdio_intf.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/drivers/staging/rtl8723bs/os_dep/sdio_intf.c b/drivers/staging/rtl8723bs/os_dep/sdio_intf.c
index 490431484524..7ee821dbbae0 100644
--- a/drivers/staging/rtl8723bs/os_dep/sdio_intf.c
+++ b/drivers/staging/rtl8723bs/os_dep/sdio_intf.c
@@ -10,7 +10,10 @@
#include <linux/jiffies.h>
#ifndef dev_to_sdio_func
-#define dev_to_sdio_func(d) container_of(d, struct sdio_func, dev)
+static inline struct sdio_func *dev_to_sdio_func(struct device *d)
+{
+ return container_of(d, struct sdio_func, dev);
+}
#endif
static const struct sdio_device_id sdio_ids[] = {
--
2.34.1
Powered by blists - more mailing lists