diff options
| author | Andy Shevchenko <[email protected]> | 2022-11-14 18:46:26 +0000 |
|---|---|---|
| committer | Bartosz Golaszewski <[email protected]> | 2022-11-15 10:53:13 +0000 |
| commit | a431803852de00d8d3c143b19f5690254225538f (patch) | |
| tree | 8f0e94513a371b8014124d0b256a5ee958bde871 /drivers/gpio/gpiolib-of.c | |
| parent | gpiolib: of: Prepare of_mm_gpiochip_add_data() for fwnode (diff) | |
| download | kernel-a431803852de00d8d3c143b19f5690254225538f.tar.gz kernel-a431803852de00d8d3c143b19f5690254225538f.zip | |
gpiolib: of: Drop redundant check in of_mm_gpiochip_remove()
The callers never call the function with invalid pointer.
Moreover, compiler quite likely dropped that check anyway
because we use that pointer before the check.
Signed-off-by: Andy Shevchenko <[email protected]>
Acked-by: Linus Walleij <[email protected]>
Reviewed-by: Dmitry Torokhov <[email protected]>
Signed-off-by: Bartosz Golaszewski <[email protected]>
Diffstat (limited to 'drivers/gpio/gpiolib-of.c')
| -rw-r--r-- | drivers/gpio/gpiolib-of.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/gpio/gpiolib-of.c b/drivers/gpio/gpiolib-of.c index c9b0c9fdeca8..a6871859a59d 100644 --- a/drivers/gpio/gpiolib-of.c +++ b/drivers/gpio/gpiolib-of.c @@ -961,9 +961,6 @@ void of_mm_gpiochip_remove(struct of_mm_gpio_chip *mm_gc) { struct gpio_chip *gc = &mm_gc->gc; - if (!mm_gc) - return; - gpiochip_remove(gc); iounmap(mm_gc->regs); kfree(gc->label); |
