#include <linux/module.h>
#include <linux/string.h>
#include <linux/fb.h>
#include <asm/types.h>
#define DEBUG
#ifdef DEBUG
#define DPRINTK(fmt, args...) …
#else
#define DPRINTK …
#endif
static const u32 cfb_tab8_be[] = …;
static const u32 cfb_tab8_le[] = …;
static const u32 cfb_tab16_be[] = …;
static const u32 cfb_tab16_le[] = …;
static const u32 cfb_tab32[] = …;
static void color_imageblit(const struct fb_image *image, struct fb_info *p,
void *dst1, u32 start_index, u32 pitch_index)
{ … }
static void slow_imageblit(const struct fb_image *image, struct fb_info *p,
void *dst1, u32 fgcolor, u32 bgcolor,
u32 start_index, u32 pitch_index)
{ … }
static void fast_imageblit(const struct fb_image *image, struct fb_info *p,
void *dst1, u32 fgcolor, u32 bgcolor)
{ … }
void sys_imageblit(struct fb_info *p, const struct fb_image *image)
{ … }
EXPORT_SYMBOL(…);
MODULE_AUTHOR(…) …;
MODULE_DESCRIPTION(…) …;
MODULE_LICENSE(…) …;