summaryrefslogtreecommitdiff
path: root/include/dm
diff options
context:
space:
mode:
authorSughosh Ganu <sughosh.ganu@linaro.org>2022-01-30 00:51:08 +0530
committerSimon Glass <sjg@chromium.org>2022-02-09 12:26:12 -0700
commit82ee8bfe519307b4175bb0f751da73c8555a0a25 (patch)
treedaf3fa7e31c9e86622eea36fecbc370d71f580b2 /include/dm
parentebc87d0dafd4ca7859c3b7d2b38430bc2669ee85 (diff)
dm: Use parenthesis for the device_get_ops macro argument
Use parenthesis for the device_get_ops macro argument. This prevents errors when using an expression for the parameter. Signed-off-by: Sughosh Ganu <sughosh.ganu@linaro.org> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/dm')
-rw-r--r--include/dm/device.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/dm/device.h b/include/dm/device.h
index 435a1114f1..cb52a0997c 100644
--- a/include/dm/device.h
+++ b/include/dm/device.h
@@ -212,7 +212,7 @@ struct udevice_rt {
#define DM_MAX_SEQ_STR 3
/* Returns the operations for a device */
-#define device_get_ops(dev) (dev->driver->ops)
+#define device_get_ops(dev) ((dev)->driver->ops)
#if CONFIG_IS_ENABLED(OF_PLATDATA_RT)
u32 dev_get_flags(const struct udevice *dev);