From: Marco Felsch <[email protected]>

This is just a cosmetic commit to align the code more with the Linux
kernel.

Signed-off-by: Marco Felsch <[email protected]>
Reviewed-by: Ahmad Fatoum <[email protected]>
Signed-off-by: Ahmad Fatoum <[email protected]>
---
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


Reply via email to