mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-13 22:56:27 +08:00
gpio: max732x: Remove duplicate NULL check
Since i2c_unregister_device() became NULL-aware we may remove duplicate NULL check. Cc: Linus Walleij <linus.walleij@linaro.org> Cc: linux-gpio@vger.kernel.org Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
4fbd8d194f
commit
e1c73a9906
@ -709,8 +709,7 @@ static int max732x_probe(struct i2c_client *client,
|
||||
return 0;
|
||||
|
||||
out_failed:
|
||||
if (chip->client_dummy)
|
||||
i2c_unregister_device(chip->client_dummy);
|
||||
i2c_unregister_device(chip->client_dummy);
|
||||
return ret;
|
||||
}
|
||||
|
||||
@ -734,8 +733,7 @@ static int max732x_remove(struct i2c_client *client)
|
||||
gpiochip_remove(&chip->gpio_chip);
|
||||
|
||||
/* unregister any dummy i2c_client */
|
||||
if (chip->client_dummy)
|
||||
i2c_unregister_device(chip->client_dummy);
|
||||
i2c_unregister_device(chip->client_dummy);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user