From: Andy Shevchenko Date: Wed, 20 Sep 2023 15:49:27 +0000 (+0300) Subject: interconnect: qcom: osm-l3: Replace custom implementation of COUNT_ARGS() X-Git-Tag: v6.6.7~1167 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c39ab57032470f26eb97b6f53a1fc41a66c991e5;p=platform%2Fkernel%2Flinux-starfive.git interconnect: qcom: osm-l3: Replace custom implementation of COUNT_ARGS() [ Upstream commit 577a3c5af1fe87b65931ea94d5515266da301f56 ] Replace custom and non-portable implementation of COUNT_ARGS(). Fixes: 5bc9900addaf ("interconnect: qcom: Add OSM L3 interconnect provider support") Signed-off-by: Andy Shevchenko Link: https://lore.kernel.org/r/20230920154927.2090732-1-andriy.shevchenko@linux.intel.com Signed-off-by: Georgi Djakov Signed-off-by: Sasha Levin --- diff --git a/drivers/interconnect/qcom/osm-l3.c b/drivers/interconnect/qcom/osm-l3.c index dc321bb..e97478b 100644 --- a/drivers/interconnect/qcom/osm-l3.c +++ b/drivers/interconnect/qcom/osm-l3.c @@ -3,6 +3,7 @@ * Copyright (c) 2020-2021, The Linux Foundation. All rights reserved. */ +#include #include #include #include @@ -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__ }, \ }