From 8f191b6d4402119d03065bd8ca7acc2518b96173 Mon Sep 17 00:00:00 2001 From: diego Date: Sat, 17 Mar 2007 21:01:37 +0000 Subject: Remove radeonfb, the version in the Linux kernel is much better. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22707 b3059339-0415-0410-9bf9-f77b7e298cf2 --- drivers/Makefile | 5 +- drivers/radeon/radeonfb.c | 3175 --------------------------------------------- 2 files changed, 2 insertions(+), 3178 deletions(-) delete mode 100644 drivers/radeon/radeonfb.c (limited to 'drivers') diff --git a/drivers/Makefile b/drivers/Makefile index d74cd28f2a..b9bac2a61e 100644 --- a/drivers/Makefile +++ b/drivers/Makefile @@ -4,17 +4,16 @@ MDIR = /lib/modules/$(VERSION)/misc CFLAGS = -O2 -D__KERNEL__ -DMODULE -I$(KERNEL_INCLUDES) -Wall -include $(KERNEL_INCLUDES)/linux/modversions.h -OBJS = mga_vid.o tdfx_vid.o radeon/radeonfb.o radeon/radeon_vid.o radeon/rage128_vid.o +OBJS = mga_vid.o tdfx_vid.o radeon/radeon_vid.o radeon/rage128_vid.o all: $(OBJS) mga_vid_test tdfx_vid_test mga_vid.o: mga_vid.c mga_vid.h tdfx_vid.o: tdfx_vid.c 3dfx.h -radeon/radeonfb.o: radeon/radeonfb.c radeon/radeon.h radeon/radeon_vid.o: radeon/radeon_vid.c radeon/radeon.h radeon/radeon_vid.h radeon/rage128_vid.o: radeon/radeon_vid.c radeon/radeon.h radeon/radeon_vid.h $(CC) $(CFLAGS) -DRAGE128 -c $< -o $@ -radeon/radeonfb.o radeon/radeon_vid.o radeon/rage128_vid.o: +radeon/radeon_vid.o radeon/rage128_vid.o: CFLAGS += -fomit-frame-pointer -fno-strict-aliasing -fno-common -ffast-math %_test: %_test.c diff --git a/drivers/radeon/radeonfb.c b/drivers/radeon/radeonfb.c deleted file mode 100644 index 240070add9..0000000000 --- a/drivers/radeon/radeonfb.c +++ /dev/null @@ -1,3175 +0,0 @@ -/* - * drivers/video/radeonfb.c - * framebuffer driver for ATI Radeon chipset video boards - * - * Copyright 2000 Ani Joshi - * - * - * ChangeLog: - * 2000-08-03 initial version 0.0.1 - * 2000-09-10 more bug fixes, public release 0.0.5 - * 2001-02-19 mode bug fixes, 0.0.7 - * 2001-07-05 fixed scrolling issues, engine initialization, - * and minor mode tweaking, 0.0.9 - * - * 2001-09-07 Radeon VE support - * 2001-09-10 Radeon VE QZ support by Nick Kurshev - * (limitations: on dualhead Radeons (VE, M6, M7) - * driver works only on second head (DVI port). - * TVout is not supported too. M6 & M7 chips - * currently are not supported. Driver has a lot - * of other bugs. Probably they can be solved by - * importing XFree86 code, which has ATI's support)., - * 0.0.11 - * 2001-09-13 merge Ani Joshi radeonfb-0.1.0: - * console switching fixes, blanking fixes, - * 0.1.0-ve.0 - * 2001-09-18 Radeon VE, M6 support (by Nick Kurshev ), - * Fixed bug of rom bios detection on VE (by NK), - * Minor code cleanup (by NK), - * Enable CRT port on VE (by NK), - * Disable SURFACE_CNTL because mplayer doesn't work - * propertly (by NK) - * 0.1.0-ve.1 - * 2001-09-25 MTRR support (by NK) - * 0.1.0-ve.2 - * 2001-12-17 sync with 0.1.1: - * PanelYRes - module parameter - * - rage theatre (please see gatos.sf.net) - * - buggy tvout detection (need radeon_i2c) - * + better powerpc support - * + better radeon2 pll computing - * * Note: my stuff still work better for me than official - * linux driver :( - * Special thanks to ATI DevRel team for their hardware donations. - * - * LIMITATIONS: on dualhead Radeons (VE, M6, M7) driver doesn't work in - * dual monitor configuration. TVout is not supported too. - * Probably these problems can be solved by importing XFree86 code, which - * has ATI's support. - * - * Mini-HOWTO: This driver doesn't accept any options. It only switches your - * video card to graphics mode. Standard way to change video modes and other - * video attributes is using 'fbset' utility. - * Sample: - * - * #!/bin/sh - * fbset -fb /dev/fb0 -xres 640 -yres 480 -depth 32 -vxres 640 -vyres 480 -left 70 -right 50 -upper 70 -lower 70 -laced false -pixclock 39767 - * -*/ - -#define RADEON_VERSION "0.1.1-ve" - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include - -#include