Hi Andy,
On 08.08.19 15:44, Andy Shevchenko wrote:
On Thu, Aug 08, 2019 at 03:25:42PM +0200, Stefan Roese wrote:
Add a helper macro to enable the interation over all supported GPIO
suffixes (currently "gpios" & "gpio"). This will be used by the serial
mctrl code to check, if a GPIO property exists before requesting it.
Thanks! My comments below.
+#define for_each_gpio_suffix(idx, suffix) \
+ for (idx = 0; \
+ idx < ARRAY_SIZE(gpio_suffixes) && \
+ (suffix = gpio_suffixes[idx]) != NULL; \
+ idx++)
I think we can use comma here, like
for (idx = 0; idx < ARRAY_SIZE(...), suffix = ...; idx++;)
however, this needs to be checked, b/c I think the last operation makes a
return code, and probably we have to assign suffix first.
Yes, this seems to be the case (assign suffix first). But in this
case, the assignment is done *before* checking if the index is still
valid (in the array). In this case "suffix = gpio_suffices[2]". Or am
I missing something?
(and perhaps switch to one letter for idx makes it fit one line)
Yes.
Thanks,
Stefan