[PATCH v2 03/10] gpiolib: rename local gpio-line-names variable
Ahmad Fatoum
a.fatoum at pengutronix.de
Wed Jun 14 03:07:40 PDT 2023
From: Marco Felsch <m.felsch at pengutronix.de>
This is just a cosmetic commit to align the code more with the Linux
kernel.
Signed-off-by: Marco Felsch <m.felsch at pengutronix.de>
Reviewed-by: Ahmad Fatoum <a.fatoum at pengutronix.de>
Signed-off-by: Ahmad Fatoum <a.fatoum at pengutronix.de>
---
v1 -> v2:
- no change
---
drivers/gpio/gpiolib.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/drivers/gpio/gpiolib.c b/drivers/gpio/gpiolib.c
index 0df43c9f8f7e..eb2bba042e49 100644
--- a/drivers/gpio/gpiolib.c
+++ b/drivers/gpio/gpiolib.c
@@ -524,10 +524,10 @@ static int of_gpiochip_scan_hogs(struct gpio_chip *chip)
"gpio-line-names");
if (count > 0) {
- const char **arr = xzalloc(count * sizeof(char *));
+ const char **names = xzalloc(count * sizeof(char *));
of_property_read_string_array(chip->dev->of_node,
- "gpio-line-names", arr, count);
+ "gpio-line-names", names, count);
/*
* Since property 'gpio-line-names' cannot contains gaps, we
@@ -538,9 +538,9 @@ static int of_gpiochip_scan_hogs(struct gpio_chip *chip)
count = chip->ngpio;
for (i = 0; i < count; i++)
- gpio_desc[chip->base + i].name = xstrdup(arr[i]);
+ gpio_desc[chip->base + i].name = xstrdup(names[i]);
- free(arr);
+ free(names);
}
for_each_available_child_of_node(chip->dev->of_node, np) {
--
2.39.2
More information about the barebox
mailing list