hc
2024-05-13 9d77db3c730780c8ef5ccd4b66403ff5675cfe4e
kernel/include/uapi/linux/fb.h
....@@ -35,7 +35,6 @@
3535 #define FBIOPUT_MODEINFO 0x4617
3636 #define FBIOGET_DISPINFO 0x4618
3737 #define FBIO_WAITFORVSYNC _IOW('F', 0x20, __u32)
38
-#define FBIOGET_DMABUF _IOR('F', 0x21, struct fb_dmabuf_export)
3938
4039 #define FB_TYPE_PACKED_PIXELS 0 /* Packed Pixels */
4140 #define FB_TYPE_PLANES 1 /* Non interleaved planes */
....@@ -206,6 +205,7 @@
206205 #define FB_ACTIVATE_ALL 64 /* change all VCs on this fb */
207206 #define FB_ACTIVATE_FORCE 128 /* force apply even when no change*/
208207 #define FB_ACTIVATE_INV_MODE 256 /* invalidate videomode */
208
+#define FB_ACTIVATE_KD_TEXT 512 /* for KDSET vt ioctl */
209209
210210 #define FB_ACCELF_TEXT 1 /* (OBSOLETE) see fb_info.flags and vc_mode */
211211
....@@ -394,15 +394,9 @@
394394 struct fb_image image; /* Cursor image */
395395 };
396396
397
-#ifdef CONFIG_FB_BACKLIGHT
398397 /* Settings for the generic backlight code */
399398 #define FB_BACKLIGHT_LEVELS 128
400399 #define FB_BACKLIGHT_MAX 0xFF
401
-#endif
402400
403
-struct fb_dmabuf_export {
404
- __u32 fd;
405
- __u32 flags;
406
-};
407401
408402 #endif /* _UAPI_LINUX_FB_H */