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

fbcon-cfb8.h

Go to the documentation of this file.
00001 /*
00002  *  FBcon low-level driver for 8 bpp packed pixel (cfb8)
00003  */
00004 
00005 #ifndef _VIDEO_FBCON_CFB8_H
00006 #define _VIDEO_FBCON_CFB8_H
00007 
00008 #include <linux/config.h>
00009 
00010 #ifdef MODULE
00011 #if defined(CONFIG_FBCON_CFB8) || defined(CONFIG_FBCON_CFB8_MODULE)
00012 #define FBCON_HAS_CFB8
00013 #endif
00014 #else
00015 #if defined(CONFIG_FBCON_CFB8)
00016 #define FBCON_HAS_CFB8
00017 #endif
00018 #endif
00019 
00020 extern struct display_switch fbcon_cfb8;
00021 extern void fbcon_cfb8_setup(struct display *p);
00022 extern void fbcon_cfb8_bmove(struct display *p, int sy, int sx, int dy, int dx,
00023                              int height, int width);
00024 extern void fbcon_cfb8_clear(struct vc_data *conp, struct display *p, int sy,
00025                              int sx, int height, int width);
00026 extern void fbcon_cfb8_putc(struct vc_data *conp, struct display *p, int c,
00027                             int yy, int xx);
00028 extern void fbcon_cfb8_putcs(struct vc_data *conp, struct display *p,
00029                              const unsigned short *s, int count, int yy, int xx);
00030 extern void fbcon_cfb8_revc(struct display *p, int xx, int yy);
00031 extern void fbcon_cfb8_clear_margins(struct vc_data *conp, struct display *p,
00032                                      int bottom_only);
00033 
00034 #endif /* _VIDEO_FBCON_CFB8_H */