diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2023-10-16 19:10:04 +0300 |
---|---|---|
committer | Lee Jones <lee@kernel.org> | 2023-11-01 11:29:23 +0000 |
commit | 7b2d8a059c77344eca0f5281f97224d1accfb88a (patch) | |
tree | 950cffd8a88f7ad669c812ac08c9ee84b507e40f | |
parent | 54e657d604ae27a30ce4f84c243661d9b744bbce (diff) | |
download | lwn-7b2d8a059c77344eca0f5281f97224d1accfb88a.tar.gz lwn-7b2d8a059c77344eca0f5281f97224d1accfb88a.zip |
leds: gpio: Remove unneeded assignment
The initial ret is not used anywhere, drop the unneeded assignment.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20231016161005.1471768-5-andriy.shevchenko@linux.intel.com
Signed-off-by: Lee Jones <lee@kernel.org>
-rw-r--r-- | drivers/leds/leds-gpio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/leds/leds-gpio.c b/drivers/leds/leds-gpio.c index fd3f90f95fa2..d6e8298ffb3e 100644 --- a/drivers/leds/leds-gpio.c +++ b/drivers/leds/leds-gpio.c @@ -255,7 +255,7 @@ static int gpio_led_probe(struct platform_device *pdev) struct device *dev = &pdev->dev; struct gpio_led_platform_data *pdata = dev_get_platdata(dev); struct gpio_leds_priv *priv; - int i, ret = 0; + int i, ret; if (pdata && pdata->num_leds) { priv = devm_kzalloc(dev, struct_size(priv, leds, pdata->num_leds), GFP_KERNEL); |