/*-*- linux-c -*- * linux/drivers/video/savage/savage_accel.c -- Hardware Acceleration * * Copyright (C) 2004 Antonino Daplas<[email protected]> * All Rights Reserved * * This file is subject to the terms and conditions of the GNU General Public * License. See the file COPYING in the main directory of this archive for * more details. */ #include <linux/kernel.h> #include <linux/string.h> #include <linux/fb.h> #include <linux/module.h> #include "savagefb.h" static u32 savagefb_rop[] = …; int savagefb_sync(struct fb_info *info) { … } void savagefb_copyarea(struct fb_info *info, const struct fb_copyarea *region) { … } void savagefb_fillrect(struct fb_info *info, const struct fb_fillrect *rect) { … } void savagefb_imageblit(struct fb_info *info, const struct fb_image *image) { … } MODULE_LICENSE(…) …;