blob: ef1ae982558324048ee3655bee9c78a93ddff134 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* sys/ioc_fb.h - Framebuffer command codes
*
*/
#ifndef _S_I_FB_H
#define _S_I_FB_H
/* The I/O control requests. */
#define FBIOGET_VSCREENINFO _IOR('V', 1, struct fb_var_screeninfo)
#define FBIOPUT_VSCREENINFO _IOW('V', 2, struct fb_var_screeninfo)
#define FBIOGET_FSCREENINFO _IOR('V', 3, struct fb_fix_screeninfo)
#define FBIOPAN_DISPLAY _IOW('V', 4, struct fb_var_screeninfo)
#endif /* _S_I_FB_H */
|