Browse Source

gpio: 104-dio-48e: Remove unnecessary driver_data set

Setting driver_data was necessary to access private data in the
dio48e_remove function. Now that the dio48e_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>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
William Breathitt Gray 8 years ago
parent
commit
3547f1405d
1 changed files with 0 additions and 2 deletions
  1. 0 2
      drivers/gpio/gpio-104-dio-48e.c

+ 0 - 2
drivers/gpio/gpio-104-dio-48e.c

@@ -369,8 +369,6 @@ static int dio48e_probe(struct device *dev, unsigned int id)
 
 
 	spin_lock_init(&dio48egpio->lock);
 	spin_lock_init(&dio48egpio->lock);
 
 
-	dev_set_drvdata(dev, dio48egpio);
-
 	err = devm_gpiochip_add_data(dev, &dio48egpio->chip, dio48egpio);
 	err = devm_gpiochip_add_data(dev, &dio48egpio->chip, dio48egpio);
 	if (err) {
 	if (err) {
 		dev_err(dev, "GPIO registering failed (%d)\n", err);
 		dev_err(dev, "GPIO registering failed (%d)\n", err);