Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0f719231 authored by Markus Elfring's avatar Markus Elfring Committed by Linus Walleij
Browse files

gpio: stmpe: Delete an unnecessary variable initialisation in stmpe_gpio_probe()



The local variable "irq" will eventually be set to an appropriate value
a bit later. Thus omit the explicit initialisation at the beginning.

Signed-off-by: default avatarMarkus Elfring <elfring@users.sourceforge.net>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 757ad058
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -432,8 +432,7 @@ static int stmpe_gpio_probe(struct platform_device *pdev)
	struct stmpe *stmpe = dev_get_drvdata(pdev->dev.parent);
	struct device_node *np = pdev->dev.of_node;
	struct stmpe_gpio *stmpe_gpio;
	int ret;
	int irq = 0;
	int ret, irq;

	stmpe_gpio = kzalloc(sizeof(*stmpe_gpio), GFP_KERNEL);
	if (!stmpe_gpio)