September 2025 | ||||||
Mo | Tu | We | Th | Fr | Sa | Su |
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 1 | 2 | 3 | 4 | 5 |
6 | 7 | 8 | 9 | 10 | 11 | 12 |
01: #ifndef __LINUX_RADEONFB_H__ 02: #define __LINUX_RADEONFB_H__ 03: 04: #include <asm/ioctl.h> 05: #include <linux/types.h> 06: 07: #define ATY_RADEON_LCD_ON 0x00000001 08: #define ATY_RADEON_CRT_ON 0x00000002 09: 10: 11: #define FBIO_RADEON_GET_MIRROR _IOR('@', 3, size_t) 12: #define FBIO_RADEON_SET_MIRROR _IOW('@', 4, size_t) 13: 14: #endif 15: 16: