staging/xgifb: Remove superfluous header includes
This patch removes all unnecessary, redundant and superfluous header includes from xgifb. Tested on hp t5325 (XGI Z11) Signed-off-by: Peter Huewe <peterhuewe@gmx.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
ac326fb96b
commit
f3ca589baf
7 changed files with 0 additions and 60 deletions
|
@ -1,13 +1,7 @@
|
||||||
#ifndef _XGIFB_MAIN
|
#ifndef _XGIFB_MAIN
|
||||||
#define _XGIFB_MAIN
|
#define _XGIFB_MAIN
|
||||||
|
|
||||||
|
|
||||||
/* ------------------- Constant Definitions ------------------------- */
|
/* ------------------- Constant Definitions ------------------------- */
|
||||||
|
|
||||||
|
|
||||||
#include "XGIfb.h"
|
#include "XGIfb.h"
|
||||||
#include "vb_struct.h"
|
|
||||||
#include "../../video/sis/sis.h"
|
|
||||||
#include "vb_def.h"
|
#include "vb_def.h"
|
||||||
|
|
||||||
#define XGIFAIL(x) do { printk(x "\n"); return -EINVAL; } while (0)
|
#define XGIFAIL(x) do { printk(x "\n"); return -EINVAL; } while (0)
|
||||||
|
|
|
@ -6,36 +6,12 @@
|
||||||
|
|
||||||
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
|
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
|
||||||
|
|
||||||
/* #include <linux/config.h> */
|
|
||||||
#include <linux/module.h>
|
#include <linux/module.h>
|
||||||
#include <linux/moduleparam.h>
|
|
||||||
#include <linux/kernel.h>
|
|
||||||
#include <linux/spinlock.h>
|
|
||||||
#include <linux/errno.h>
|
|
||||||
#include <linux/string.h>
|
|
||||||
#include <linux/mm.h>
|
|
||||||
#include <linux/tty.h>
|
|
||||||
#include <linux/slab.h>
|
|
||||||
#include <linux/delay.h>
|
|
||||||
#include <linux/fb.h>
|
|
||||||
#include <linux/console.h>
|
|
||||||
#include <linux/selection.h>
|
|
||||||
#include <linux/ioport.h>
|
|
||||||
#include <linux/init.h>
|
|
||||||
#include <linux/pci.h>
|
|
||||||
#include <linux/vt_kern.h>
|
|
||||||
#include <linux/capability.h>
|
|
||||||
#include <linux/fs.h>
|
|
||||||
#include <linux/types.h>
|
|
||||||
#include <linux/proc_fs.h>
|
|
||||||
|
|
||||||
#include <linux/io.h>
|
|
||||||
#ifdef CONFIG_MTRR
|
#ifdef CONFIG_MTRR
|
||||||
#include <asm/mtrr.h>
|
#include <asm/mtrr.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "XGIfb.h"
|
|
||||||
#include "vgatypes.h"
|
|
||||||
#include "XGI_main.h"
|
#include "XGI_main.h"
|
||||||
#include "vb_init.h"
|
#include "vb_init.h"
|
||||||
#include "vb_util.h"
|
#include "vb_util.h"
|
||||||
|
|
|
@ -1,8 +1,5 @@
|
||||||
#ifndef _LINUX_XGIFB
|
#ifndef _LINUX_XGIFB
|
||||||
#define _LINUX_XGIFB
|
#define _LINUX_XGIFB
|
||||||
#include <linux/ioctl.h>
|
|
||||||
#include <linux/types.h>
|
|
||||||
|
|
||||||
#include "vgatypes.h"
|
#include "vgatypes.h"
|
||||||
#include "vb_struct.h"
|
#include "vb_struct.h"
|
||||||
|
|
||||||
|
|
|
@ -1,19 +1,10 @@
|
||||||
#include <linux/types.h>
|
|
||||||
#include <linux/delay.h> /* udelay */
|
#include <linux/delay.h> /* udelay */
|
||||||
#include <linux/pci.h>
|
|
||||||
#include <linux/vmalloc.h>
|
#include <linux/vmalloc.h>
|
||||||
|
|
||||||
#include "XGIfb.h"
|
#include "XGIfb.h"
|
||||||
#include "vgatypes.h"
|
|
||||||
|
|
||||||
#include "vb_def.h"
|
#include "vb_def.h"
|
||||||
#include "vb_struct.h"
|
|
||||||
#include "vb_util.h"
|
#include "vb_util.h"
|
||||||
#include "vb_setmode.h"
|
#include "vb_setmode.h"
|
||||||
#include "vb_init.h"
|
|
||||||
|
|
||||||
|
|
||||||
#include <linux/io.h>
|
|
||||||
|
|
||||||
static const unsigned short XGINew_DDRDRAM_TYPE340[4][5] = {
|
static const unsigned short XGINew_DDRDRAM_TYPE340[4][5] = {
|
||||||
{ 2, 13, 9, 64, 0x45},
|
{ 2, 13, 9, 64, 0x45},
|
||||||
|
|
|
@ -1,17 +1,9 @@
|
||||||
|
|
||||||
#include <linux/io.h>
|
|
||||||
#include <linux/delay.h>
|
#include <linux/delay.h>
|
||||||
#include <linux/types.h>
|
|
||||||
#include "XGIfb.h"
|
#include "XGIfb.h"
|
||||||
|
|
||||||
|
|
||||||
#include "vb_def.h"
|
#include "vb_def.h"
|
||||||
#include "vgatypes.h"
|
|
||||||
#include "vb_struct.h"
|
|
||||||
#include "vb_init.h"
|
|
||||||
#include "vb_util.h"
|
#include "vb_util.h"
|
||||||
#include "vb_table.h"
|
#include "vb_table.h"
|
||||||
#include "vb_setmode.h"
|
|
||||||
|
|
||||||
|
|
||||||
#define IndexMask 0xff
|
#define IndexMask 0xff
|
||||||
|
|
|
@ -1,13 +1,4 @@
|
||||||
#include <linux/io.h>
|
|
||||||
#include <linux/types.h>
|
|
||||||
|
|
||||||
#include "vb_def.h"
|
|
||||||
#include "vgatypes.h"
|
#include "vgatypes.h"
|
||||||
#include "vb_struct.h"
|
|
||||||
|
|
||||||
#include "XGIfb.h"
|
|
||||||
|
|
||||||
#include "vb_util.h"
|
|
||||||
|
|
||||||
void xgifb_reg_set(unsigned long port, u8 index, u8 data)
|
void xgifb_reg_set(unsigned long port, u8 index, u8 data)
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
#ifndef _VGATYPES_
|
#ifndef _VGATYPES_
|
||||||
#define _VGATYPES_
|
#define _VGATYPES_
|
||||||
|
|
||||||
#include <linux/ioctl.h>
|
|
||||||
#include <linux/fb.h> /* for struct fb_var_screeninfo for sis.h */
|
#include <linux/fb.h> /* for struct fb_var_screeninfo for sis.h */
|
||||||
#include "../../video/sis/vgatypes.h"
|
#include "../../video/sis/vgatypes.h"
|
||||||
#include "../../video/sis/sis.h" /* for LCD_TYPE */
|
#include "../../video/sis/sis.h" /* for LCD_TYPE */
|
||||||
|
|
Loading…
Add table
Reference in a new issue