12345678910111213141516171819202122232425262728293031 |
- #ifndef _BACKLIGHT_H
- #define _BACKLIGHT_H
- struct backlight_ops {
-
- int (*enable)(struct udevice *dev);
- };
- #define backlight_get_ops(dev) ((struct backlight_ops *)(dev)->driver->ops)
- int backlight_enable(struct udevice *dev);
- #endif
|