mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-01 14:52:32 +00:00
gpiolib: remove a redundant check in gpiod_to_chip()
This non-functional change slightly simplifies the implementation of gpiod_to_chip() function. Signed-off-by: Vladimir Zapolskiy <vz@mleia.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
30322bcf82
commit
dd3b9a4408
@ -161,7 +161,7 @@ EXPORT_SYMBOL_GPL(desc_to_gpio);
|
||||
*/
|
||||
struct gpio_chip *gpiod_to_chip(const struct gpio_desc *desc)
|
||||
{
|
||||
if (!desc || !desc->gdev || !desc->gdev->chip)
|
||||
if (!desc || !desc->gdev)
|
||||
return NULL;
|
||||
return desc->gdev->chip;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user