forked from mirrors/linux
		
	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 <vilhelm.gray@gmail.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
		
							parent
							
								
									3547f1405d
								
							
						
					
					
						commit
						b4e73edee5
					
				
					 1 changed files with 0 additions and 2 deletions
				
			
		| 
						 | 
					@ -246,8 +246,6 @@ static int idi_48_probe(struct device *dev, unsigned int id)
 | 
				
			||||||
	spin_lock_init(&idi48gpio->lock);
 | 
						spin_lock_init(&idi48gpio->lock);
 | 
				
			||||||
	spin_lock_init(&idi48gpio->ack_lock);
 | 
						spin_lock_init(&idi48gpio->ack_lock);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	dev_set_drvdata(dev, idi48gpio);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	err = devm_gpiochip_add_data(dev, &idi48gpio->chip, idi48gpio);
 | 
						err = devm_gpiochip_add_data(dev, &idi48gpio->chip, idi48gpio);
 | 
				
			||||||
	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 a new issue