From: William Breathitt Gray Date: Mon, 30 Jan 2017 14:39:47 +0000 (-0500) Subject: gpio: 104-idi-48: Remove unnecessary driver_data set X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=b4e73edee51a3c1c00186fe86b51f6626757ffc3;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git gpio: 104-idi-48: Remove unnecessary driver_data set Setting driver_data was necessary to access private data in the idi_48_remove function. Now that the idi_48_remove function is gone, driver_data is no longer used. This patch removes the relevant code. Signed-off-by: William Breathitt Gray Signed-off-by: Linus Walleij --- diff --git a/drivers/gpio/gpio-104-idi-48.c b/drivers/gpio/gpio-104-idi-48.c index eafbf053f3e8..dc100dff6e13 100644 --- a/drivers/gpio/gpio-104-idi-48.c +++ b/drivers/gpio/gpio-104-idi-48.c @@ -246,8 +246,6 @@ static int idi_48_probe(struct device *dev, unsigned int id) spin_lock_init(&idi48gpio->lock); spin_lock_init(&idi48gpio->ack_lock); - dev_set_drvdata(dev, idi48gpio); - err = devm_gpiochip_add_data(dev, &idi48gpio->chip, idi48gpio); if (err) { dev_err(dev, "GPIO registering failed (%d)\n", err);