Main Page | Alphabetical List | Data Structures | Directories | File List | Data Fields | Globals

fbcon-cfb16.h

Go to the documentation of this file.
00001 /*
00002  *  FBcon low-level driver for 16 bpp packed pixel (cfb16)
00003  */
00004 
00005 #ifndef _VIDEO_FBCON_CFB16_H
00006 #define _VIDEO_FBCON_CFB16_H
00007 
00008 #include <linux/config.h>
00009 
00010 #ifdef MODULE
00011 #if defined(CONFIG_FBCON_CFB16) || defined(CONFIG_FBCON_CFB16_MODULE)
00012 #define FBCON_HAS_CFB16
00013 #endif
00014 #else
00015 #if defined(CONFIG_FBCON_CFB16)
00016 #define FBCON_HAS_CFB16
00017 #endif
00018 #endif
00019 
00020 extern struct display_switch fbcon_cfb16;
00021 extern void fbcon_cfb16_setup(struct display *p);
00022 extern void fbcon_cfb16_bmove(struct display *p, int sy, int sx, int dy,
00023                               int dx, int height, int width);
00024 extern void fbcon_cfb16_clear(struct vc_data *conp, struct display *p, int sy,
00025                               int sx, int height, int width);
00026 extern void fbcon_cfb16_putc(struct vc_data *conp, struct display *p, int c,
00027                              int yy, int xx);
00028 extern void fbcon_cfb16_putcs(struct vc_data *conp, struct display *p,
00029                               const unsigned short *s, int count, int yy, int xx);
00030 extern void fbcon_cfb16_revc(struct display *p, int xx, int yy);
00031 extern void fbcon_cfb16_clear_margins(struct vc_data *conp, struct display *p,
00032                                       int bottom_only);
00033 
00034 #endif /* _VIDEO_FBCON_CFB16_H */