Lines Matching refs:lcd_device
32 struct lcd_device;
43 int (*get_power)(struct lcd_device *);
51 int (*early_set_power)(struct lcd_device *, int power);
53 int (*r_early_set_power)(struct lcd_device *, int power);
55 int (*set_power)(struct lcd_device *, int power);
57 int (*get_contrast)(struct lcd_device *);
59 int (*set_contrast)(struct lcd_device *, int contrast);
61 int (*set_mode)(struct lcd_device *, struct fb_videomode *);
64 int (*check_fb)(struct lcd_device *, struct fb_info *);
67 struct lcd_device { struct
85 int (*reset)(struct lcd_device *ld); argument
88 int (*power_on)(struct lcd_device *ld, int enable);
106 static inline void lcd_set_power(struct lcd_device *ld, int power) in lcd_set_power()
114 extern struct lcd_device *lcd_device_register(const char *name,
116 extern struct lcd_device *devm_lcd_device_register(struct device *dev,
119 extern void lcd_device_unregister(struct lcd_device *ld);
121 struct lcd_device *ld);
123 #define to_lcd_device(obj) container_of(obj, struct lcd_device, dev)
125 static inline void * lcd_get_data(struct lcd_device *ld_dev) in lcd_get_data()