]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
gpiolib: improve coding style for local variables
authorBartosz Golaszewski <brgl@bgdev.pl>
Thu, 2 Dec 2021 13:40:33 +0000 (14:40 +0100)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Wed, 14 Dec 2022 13:02:55 +0000 (14:02 +0100)
[ Upstream commit e5ab49cd3d6937b1818b80cb5eb09dc018ae0718 ]

Drop unneeded whitespaces and put the variables of the same type
together for consistency with the rest of the code.

Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl>
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Stable-dep-of: ec851b23084b ("gpiolib: fix memory leak in gpiochip_setup_dev()")
Signed-off-by: Sasha Levin <sashal@kernel.org>
(cherry picked from commit 70c5515c1c3095210ad9c76eff8cb0dd35db6788)
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
drivers/gpio/gpiolib.c

index 320baed949ee8efe5c0e37bb13de9b6f7a5051d3..a87c4cd94f7aca14c559db74067c421d890e8411 100644 (file)
@@ -594,11 +594,11 @@ int gpiochip_add_data_with_key(struct gpio_chip *gc, void *data,
                               struct lock_class_key *request_key)
 {
        struct fwnode_handle *fwnode = gc->parent ? dev_fwnode(gc->parent) : NULL;
-       unsigned long   flags;
-       int             ret = 0;
-       unsigned        i;
-       int             base = gc->base;
        struct gpio_device *gdev;
+       unsigned long flags;
+       int base = gc->base;
+       unsigned int i;
+       int ret = 0;
 
        /*
         * First: allocate and populate the internal stat container, and