From: William Breathitt Gray Date: Mon, 30 Jan 2017 14:39:57 +0000 (-0500) Subject: gpio: 104-idio-16: Remove unnecessary driver_data set X-Git-Tag: v4.13~1259^2~18 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=c74f04d4b5b5049d6bd94bdc85a9da7b5896ca4b;p=mirror_ubuntu-bionic-kernel.git gpio: 104-idio-16: Remove unnecessary driver_data set Setting driver_data was necessary to access private data in the idio_16_remove function. Now that the idio_16_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-idio-16.c b/drivers/gpio/gpio-104-idio-16.c index 01a091e17614..67068b61b90b 100644 --- a/drivers/gpio/gpio-104-idio-16.c +++ b/drivers/gpio/gpio-104-idio-16.c @@ -242,8 +242,6 @@ static int idio_16_probe(struct device *dev, unsigned int id) spin_lock_init(&idio16gpio->lock); - dev_set_drvdata(dev, idio16gpio); - err = devm_gpiochip_add_data(dev, &idio16gpio->chip, idio16gpio); if (err) { dev_err(dev, "GPIO registering failed (%d)\n", err);