Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-only */
0002 /* include/video/platform_lcd.h
0003  *
0004  * Copyright 2008 Simtec Electronics
0005  *  Ben Dooks <ben@simtec.co.uk>
0006  *
0007  * Generic platform-device LCD power control interface.
0008 */
0009 
0010 struct plat_lcd_data;
0011 struct fb_info;
0012 
0013 struct plat_lcd_data {
0014     int (*probe)(struct plat_lcd_data *);
0015     void    (*set_power)(struct plat_lcd_data *, unsigned int power);
0016     int (*match_fb)(struct plat_lcd_data *, struct fb_info *);
0017 };
0018