| .. | .. |
|---|
| 41 | 41 | /* Get the LCD panel power status (0: full on, 1..3: controller |
|---|
| 42 | 42 | power on, flat panel power off, 4: full off), see FB_BLANK_XXX */ |
|---|
| 43 | 43 | int (*get_power)(struct lcd_device *); |
|---|
| 44 | | - /* |
|---|
| 45 | | - * Enable or disable power to the LCD(0: on; 4: off, see FB_BLANK_XXX) |
|---|
| 46 | | - * and this callback would be called proir to fb driver's callback. |
|---|
| 47 | | - * |
|---|
| 48 | | - * P.S. note that if early_set_power is not NULL then early fb notifier |
|---|
| 49 | | - * would be registered. |
|---|
| 50 | | - */ |
|---|
| 51 | | - int (*early_set_power)(struct lcd_device *, int power); |
|---|
| 52 | | - /* revert the effects of the early blank event. */ |
|---|
| 53 | | - int (*r_early_set_power)(struct lcd_device *, int power); |
|---|
| 54 | 44 | /* Enable or disable power to the LCD (0: on; 4: off, see FB_BLANK_XXX) */ |
|---|
| 55 | 45 | int (*set_power)(struct lcd_device *, int power); |
|---|
| 56 | 46 | /* Get the current contrast setting (0-max_contrast) */ |
|---|