summaryrefslogtreecommitdiff
path: root/drivers/staging/most/i2c/i2c.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/staging/most/i2c/i2c.c')
-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 *);