[PATCH] drivers/video/sis/sis_accel.c: removal of old code
Signed-off-by: Michal Piotrowski <michal.k.k.piotrowski@gmail.com> Cc: "Antonino A. Daplas" <adaplas@pol.net> Cc: Thomas Winischhofer <thomas@winischhofer.net> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
31df9ee8c6
commit
882e6afd71
|
@ -32,22 +32,10 @@
|
||||||
#include <linux/module.h>
|
#include <linux/module.h>
|
||||||
#include <linux/kernel.h>
|
#include <linux/kernel.h>
|
||||||
#include <linux/fb.h>
|
#include <linux/fb.h>
|
||||||
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0)
|
|
||||||
#include <linux/console.h>
|
|
||||||
#endif
|
|
||||||
#include <linux/ioport.h>
|
#include <linux/ioport.h>
|
||||||
#include <linux/types.h>
|
#include <linux/types.h>
|
||||||
|
|
||||||
#include <asm/io.h>
|
#include <asm/io.h>
|
||||||
|
|
||||||
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0)
|
|
||||||
#include <video/fbcon.h>
|
|
||||||
#include <video/fbcon-cfb8.h>
|
|
||||||
#include <video/fbcon-cfb16.h>
|
|
||||||
#include <video/fbcon-cfb24.h>
|
|
||||||
#include <video/fbcon-cfb32.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include "sis.h"
|
#include "sis.h"
|
||||||
#include "sis_accel.h"
|
#include "sis_accel.h"
|
||||||
|
|
||||||
|
@ -91,11 +79,9 @@ static const u8 sisPatALUConv[] =
|
||||||
0xFF, /* dest = 0xFF; 1, GXset, 0xF */
|
0xFF, /* dest = 0xFF; 1, GXset, 0xF */
|
||||||
};
|
};
|
||||||
|
|
||||||
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,34)
|
|
||||||
static const int myrops[] = {
|
static const int myrops[] = {
|
||||||
3, 10, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3
|
3, 10, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3
|
||||||
};
|
};
|
||||||
#endif
|
|
||||||
|
|
||||||
/* 300 series ----------------------------------------------------- */
|
/* 300 series ----------------------------------------------------- */
|
||||||
#ifdef CONFIG_FB_SIS_300
|
#ifdef CONFIG_FB_SIS_300
|
||||||
|
@ -315,8 +301,6 @@ void sisfb_syncaccel(struct sis_video_info *ivideo)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0) /* --------------- 2.5 --------------- */
|
|
||||||
|
|
||||||
int fbcon_sis_sync(struct fb_info *info)
|
int fbcon_sis_sync(struct fb_info *info)
|
||||||
{
|
{
|
||||||
struct sis_video_info *ivideo = (struct sis_video_info *)info->par;
|
struct sis_video_info *ivideo = (struct sis_video_info *)info->par;
|
||||||
|
@ -438,13 +422,3 @@ void fbcon_sis_copyarea(struct fb_info *info, const struct fb_copyarea *area)
|
||||||
|
|
||||||
sisfb_syncaccel(ivideo);
|
sisfb_syncaccel(ivideo);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0) /* -------------- 2.4 --------------- */
|
|
||||||
|
|
||||||
#include "sisfb_accel_2_4.h"
|
|
||||||
|
|
||||||
#endif /* KERNEL VERSION */
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue