watchdog: mpc8xxx_wdt: fix build
Since 1c48a5c93d (dt: Eliminate of_platform_{,un}register_driver)
mpc8xxx_wdt no longer builds as it tries to refer to a 'match' variable
rather than ofdev->dev.of_match that it checks just before.
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Acked-by: Grant Likely <grant.likely@secretlab.ca>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
	
	
This commit is contained in:
		
					parent
					
						
							
								8b9686ff4d
							
						
					
				
			
			
				commit
				
					
						d856b41846
					
				
			
		
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -195,7 +195,7 @@ static int __devinit mpc8xxx_wdt_probe(struct platform_device *ofdev) | |||
| 
 | ||||
| 	if (!ofdev->dev.of_match) | ||||
| 		return -EINVAL; | ||||
| 	wdt_type = match->data; | ||||
| 	wdt_type = ofdev->dev.of_match->data; | ||||
| 
 | ||||
| 	if (!freq || freq == -1) | ||||
| 		return -EINVAL; | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Peter Korsgaard
				Peter Korsgaard