From: Bartosz Golaszewski Date: Thu, 2 Dec 2021 13:40:33 +0000 (+0100) Subject: gpiolib: improve coding style for local variables X-Git-Tag: Proxmox-5.15.83-1~64 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=3967707275d9a766a9d4cfc316b611e3ad26a83d;p=mirror_ubuntu-jammy-kernel.git gpiolib: improve coding style for local variables [ 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 Reviewed-by: Linus Walleij Reviewed-by: Andy Shevchenko Stable-dep-of: ec851b23084b ("gpiolib: fix memory leak in gpiochip_setup_dev()") Signed-off-by: Sasha Levin (cherry picked from commit 70c5515c1c3095210ad9c76eff8cb0dd35db6788) Signed-off-by: Thomas Lamprecht --- diff --git a/drivers/gpio/gpiolib.c b/drivers/gpio/gpiolib.c index 320baed949ee..a87c4cd94f7a 100644 --- a/drivers/gpio/gpiolib.c +++ b/drivers/gpio/gpiolib.c @@ -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