gpio: ws16c48: Remove unnecessary driver_data set
Setting driver_data was necessary to access private data in the ws16c48_remove function. Now that the ws16c48_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>
This commit is contained in:
parent
232a448706
commit
9e1b487bb4
|
@ -372,8 +372,6 @@ static int ws16c48_probe(struct device *dev, unsigned int id)
|
||||||
|
|
||||||
spin_lock_init(&ws16c48gpio->lock);
|
spin_lock_init(&ws16c48gpio->lock);
|
||||||
|
|
||||||
dev_set_drvdata(dev, ws16c48gpio);
|
|
||||||
|
|
||||||
err = devm_gpiochip_add_data(dev, &ws16c48gpio->chip, ws16c48gpio);
|
err = devm_gpiochip_add_data(dev, &ws16c48gpio->chip, ws16c48gpio);
|
||||||
if (err) {
|
if (err) {
|
||||||
dev_err(dev, "GPIO registering failed (%d)\n", err);
|
dev_err(dev, "GPIO registering failed (%d)\n", err);
|
||||||
|
|
Loading…
Reference in New Issue