Messages in this thread Patch in this message |  | | From | William Breathitt Gray <> | Subject | [PATCH 4/5] gpio: gpio-mm: Remove unnecessary driver_data set | Date | Mon, 30 Jan 2017 09:40:15 -0500 |
| |
Setting driver_data was necessary to access private data in the gpiomm_remove function. Now that the gpiomm_remove function is gone, driver_data is no longer used. This patch removes the relevant code.
Signed-off-by: William Breathitt Gray <vilhelm.gray@gmail.com> --- drivers/gpio/gpio-gpio-mm.c | 2 -- 1 file changed, 2 deletions(-)
diff --git a/drivers/gpio/gpio-gpio-mm.c b/drivers/gpio/gpio-gpio-mm.c index 393c8f9cf30d..60017425b49f 100644 --- a/drivers/gpio/gpio-gpio-mm.c +++ b/drivers/gpio/gpio-gpio-mm.c @@ -261,8 +261,6 @@ static int gpiomm_probe(struct device *dev, unsigned int id) spin_lock_init(&gpiommgpio->lock); - dev_set_drvdata(dev, gpiommgpio); - err = devm_gpiochip_add_data(dev, &gpiommgpio->chip, gpiommgpio); if (err) { dev_err(dev, "GPIO registering failed (%d)\n", err); -- 2.11.0
|  |