 46e1915eef
			
		
	
	
	46e1915eef
	
	
	
		
			
			Platform LCD devices may need to do some device-specific initialization before they can be used (regulator or GPIO setup, for example), but currently the driver does not support any way of doing this. This patch adds a probe() callback to plat_lcd_data which platform LCD devices can set to indicate that device-specific initialization is needed. Signed-off-by: Andrew Bresticker <abrestic@chromium.org> Cc: Richard Purdie <rpurdie@rpsys.net> Cc: Florian Tobias Schandinat <FlorianSchandinat@gmx.de> Reviewed-by: Doug Anderson <dianders@chromium.org> Acked-by: Jingoo Han <jg1.han@samsung.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			589 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			589 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
| /* include/video/platform_lcd.h
 | |
|  *
 | |
|  * Copyright 2008 Simtec Electronics
 | |
|  *	Ben Dooks <ben@simtec.co.uk>
 | |
|  *
 | |
|  * Generic platform-device LCD power control interface.
 | |
|  *
 | |
|  * This program is free software; you can redistribute it and/or modify
 | |
|  * it under the terms of the GNU General Public License version 2 as
 | |
|  * published by the Free Software Foundation.
 | |
|  *
 | |
| */
 | |
| 
 | |
| struct plat_lcd_data;
 | |
| struct fb_info;
 | |
| 
 | |
| struct plat_lcd_data {
 | |
| 	int	(*probe)(struct plat_lcd_data *);
 | |
| 	void	(*set_power)(struct plat_lcd_data *, unsigned int power);
 | |
| 	int	(*match_fb)(struct plat_lcd_data *, struct fb_info *);
 | |
| };
 | |
| 
 |