Commit 80f5fef0 authored by Andy Shevchenko's avatar Andy Shevchenko Committed by Georgi Djakov

interconnect: imx: Replace custom implementation of COUNT_ARGS()

Replace custom and non-portable implementation of COUNT_ARGS().

Fixes: f0d80485 ("interconnect: Add imx core driver")
Signed-off-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20230920153432.2067664-1-andriy.shevchenko@linux.intel.comSigned-off-by: default avatarGeorgi Djakov <djakov@kernel.org>
parent 0bb80ecc
...@@ -10,6 +10,7 @@ ...@@ -10,6 +10,7 @@
#ifndef __DRIVERS_INTERCONNECT_IMX_H #ifndef __DRIVERS_INTERCONNECT_IMX_H
#define __DRIVERS_INTERCONNECT_IMX_H #define __DRIVERS_INTERCONNECT_IMX_H
#include <linux/args.h>
#include <linux/interconnect-provider.h> #include <linux/interconnect-provider.h>
#include <linux/kernel.h> #include <linux/kernel.h>
...@@ -89,7 +90,7 @@ struct imx_icc_noc_setting { ...@@ -89,7 +90,7 @@ struct imx_icc_noc_setting {
.id = _id, \ .id = _id, \
.name = _name, \ .name = _name, \
.adj = _adj, \ .adj = _adj, \
.num_links = ARRAY_SIZE(((int[]){ __VA_ARGS__ })), \ .num_links = COUNT_ARGS(__VA_ARGS__), \
.links = { __VA_ARGS__ }, \ .links = { __VA_ARGS__ }, \
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment