Lines Matching refs:lcd_device
31 struct lcd_device;
42 int (*get_power)(struct lcd_device *);
44 int (*set_power)(struct lcd_device *, int power);
46 int (*get_contrast)(struct lcd_device *);
48 int (*set_contrast)(struct lcd_device *, int contrast);
50 int (*set_mode)(struct lcd_device *, struct fb_videomode *);
53 int (*check_fb)(struct lcd_device *, struct fb_info *);
56 struct lcd_device { struct
74 int (*reset)(struct lcd_device *ld); argument
77 int (*power_on)(struct lcd_device *ld, int enable);
95 static inline void lcd_set_power(struct lcd_device *ld, int power) in lcd_set_power()
103 extern struct lcd_device *lcd_device_register(const char *name,
105 extern void lcd_device_unregister(struct lcd_device *ld);
107 #define to_lcd_device(obj) container_of(obj, struct lcd_device, dev)
109 static inline void * lcd_get_data(struct lcd_device *ld_dev) in lcd_get_data()