Lines Matching refs:lcd_device
31 struct lcd_device;
42 int (*get_power)(struct lcd_device *);
50 int (*early_set_power)(struct lcd_device *, int power);
52 int (*r_early_set_power)(struct lcd_device *, int power);
54 int (*set_power)(struct lcd_device *, int power);
56 int (*get_contrast)(struct lcd_device *);
58 int (*set_contrast)(struct lcd_device *, int contrast);
60 int (*set_mode)(struct lcd_device *, struct fb_videomode *);
63 int (*check_fb)(struct lcd_device *, struct fb_info *);
66 struct lcd_device { struct
84 int (*reset)(struct lcd_device *ld); argument
87 int (*power_on)(struct lcd_device *ld, int enable);
105 static inline void lcd_set_power(struct lcd_device *ld, int power) in lcd_set_power()
113 extern struct lcd_device *lcd_device_register(const char *name,
115 extern struct lcd_device *devm_lcd_device_register(struct device *dev,
118 extern void lcd_device_unregister(struct lcd_device *ld);
120 struct lcd_device *ld);
122 #define to_lcd_device(obj) container_of(obj, struct lcd_device, dev)
124 static inline void * lcd_get_data(struct lcd_device *ld_dev) in lcd_get_data()