logo

oasis-root

Compiled tree of Oasis Linux based on own branch at <https://hacktivis.me/git/oasis/> git clone https://anongit.hacktivis.me/git/oasis-root.git

vesa.h (510B)


  1. /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2. #ifndef _LINUX_VESA_H
  3. #define _LINUX_VESA_H
  4. /* VESA Blanking Levels */
  5. enum vesa_blank_mode {
  6. VESA_NO_BLANKING = 0,
  7. #define VESA_NO_BLANKING VESA_NO_BLANKING
  8. VESA_VSYNC_SUSPEND = 1,
  9. #define VESA_VSYNC_SUSPEND VESA_VSYNC_SUSPEND
  10. VESA_HSYNC_SUSPEND = 2,
  11. #define VESA_HSYNC_SUSPEND VESA_HSYNC_SUSPEND
  12. VESA_POWERDOWN = VESA_VSYNC_SUSPEND | VESA_HSYNC_SUSPEND,
  13. #define VESA_POWERDOWN VESA_POWERDOWN
  14. VESA_BLANK_MAX = VESA_POWERDOWN,
  15. };
  16. #endif