interconnect: qcom: osm-l3: Replace custom implementation of COUNT_ARGS()
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Wed, 20 Sep 2023 15:49:27 +0000 (18:49 +0300)
committerGeorgi Djakov <djakov@kernel.org>
Tue, 10 Oct 2023 09:37:34 +0000 (12:37 +0300)
Replace custom and non-portable implementation of COUNT_ARGS().

Fixes: 5bc9900addaf ("interconnect: qcom: Add OSM L3 interconnect provider support")
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20230920154927.2090732-1-andriy.shevchenko@linux.intel.com
Signed-off-by: Georgi Djakov <djakov@kernel.org>
drivers/interconnect/qcom/osm-l3.c

index dc321bb86d0be9d6c26c9e0d6fc1a960fb1ea36b..e97478bbc282533a16e285882f4a58cd88b8ed02 100644 (file)
@@ -3,6 +3,7 @@
  * Copyright (c) 2020-2021, The Linux Foundation. All rights reserved.
  */
 
+#include <linux/args.h>
 #include <linux/bitfield.h>
 #include <linux/clk.h>
 #include <linux/interconnect-provider.h>
@@ -78,7 +79,7 @@ enum {
                .name = #_name,                                         \
                .id = _id,                                              \
                .buswidth = _buswidth,                                  \
-               .num_links = ARRAY_SIZE(((int[]){ __VA_ARGS__ })),      \
+               .num_links = COUNT_ARGS(__VA_ARGS__),                   \
                .links = { __VA_ARGS__ },                               \
        }