summaryrefslogtreecommitdiff
path: root/drivers/staging/most
diff options
context:
space:
mode:
authorMenna Mahmoud <eng.mennamahmoud.mm@gmail.com>2023-03-20 13:33:56 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2023-03-22 12:17:14 +0300
commit8f51a66a629b67a11250f555b89aa8d91137ed94 (patch)
treefba01f3328b6ddd286c0fb432b6baa8dd9838f4c /drivers/staging/most
parent72a456de903389aa9d484ee0127af3352f156e1c (diff)
downloadlinux-8f51a66a629b67a11250f555b89aa8d91137ed94.tar.xz
staging: most: use inline functions for to_hdm
Convert `to_hdm` 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@inria.fr> Signed-off-by: Menna Mahmoud <eng.mennamahmoud.mm@gmail.com> Link: https://lore.kernel.org/r/20230320103356.6498-1-eng.mennamahmoud.mm@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/most')
-rw-r--r--drivers/staging/most/i2c/i2c.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/staging/most/i2c/i2c.c b/drivers/staging/most/i2c/i2c.c
index df53a4c4f850..4e85e681922f 100644
--- a/drivers/staging/most/i2c/i2c.c
+++ b/drivers/staging/most/i2c/i2c.c
@@ -44,7 +44,10 @@ struct hdm_i2c {
char name[64];
};
-#define to_hdm(iface) container_of(iface, struct hdm_i2c, most_iface)
+static inline struct hdm_i2c *to_hdm(struct most_interface *iface)
+{
+ return container_of(iface, struct hdm_i2c, most_iface);
+}
static irqreturn_t most_irq_handler(int, void *);
static void pending_rx_work(struct work_struct *);