aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/video/via/global.h
diff options
context:
space:
mode:
authorTomi Valkeinen <tomi.valkeinen@ti.com>2014-02-13 08:31:38 -0500
committerTomi Valkeinen <tomi.valkeinen@ti.com>2014-04-17 01:10:19 -0400
commitf7018c21350204c4cf628462f229d44d03545254 (patch)
tree408787177164cf51cc06f7aabdb04fcff8d2b6aa /drivers/video/via/global.h
parentc26ef3eb3c11274bad1b64498d0a134f85755250 (diff)
video: move fbdev to drivers/video/fbdev
The drivers/video directory is a mess. It contains generic video related files, directories for backlight, console, linux logo, lots of fbdev device drivers, fbdev framework files. Make some order into the chaos by creating drivers/video/fbdev directory, and move all fbdev related files there. No functionality is changed, although I guess it is possible that some subtle Makefile build order related issue could be created by this patch. Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com> Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Acked-by: Geert Uytterhoeven <geert@linux-m68k.org> Acked-by: Rob Clark <robdclark@gmail.com> Acked-by: Jingoo Han <jg1.han@samsung.com> Acked-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Diffstat (limited to 'drivers/video/via/global.h')
-rw-r--r--drivers/video/via/global.h80
1 files changed, 0 insertions, 80 deletions
diff --git a/drivers/video/via/global.h b/drivers/video/via/global.h
deleted file mode 100644
index 275dbbbd6b81..000000000000
--- a/drivers/video/via/global.h
+++ /dev/null
@@ -1,80 +0,0 @@
1/*
2 * Copyright 1998-2008 VIA Technologies, Inc. All Rights Reserved.
3 * Copyright 2001-2008 S3 Graphics, Inc. All Rights Reserved.
4
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public
7 * License as published by the Free Software Foundation;
8 * either version 2, or (at your option) any later version.
9
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTIES OR REPRESENTATIONS; without even
12 * the implied warranty of MERCHANTABILITY or FITNESS FOR
13 * A PARTICULAR PURPOSE.See the GNU General Public License
14 * for more details.
15
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc.,
19 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 */
21
22#ifndef __GLOBAL_H__
23#define __GLOBAL_H__
24
25#include <linux/fb.h>
26#include <linux/delay.h>
27#include <linux/ioport.h>
28#include <linux/pci.h>
29#include <linux/io.h>
30#include <linux/uaccess.h>
31#include <linux/init.h>
32#include <linux/proc_fs.h>
33#include <linux/console.h>
34#include <linux/timer.h>
35
36#include "debug.h"
37
38#include "viafbdev.h"
39#include "chip.h"
40#include "accel.h"
41#include "share.h"
42#include "dvi.h"
43#include "viamode.h"
44#include "hw.h"
45
46#include "lcd.h"
47#include "ioctl.h"
48#include "via_utility.h"
49#include "vt1636.h"
50#include "tblDPASetting.h"
51
52/* External struct*/
53
54extern int viafb_platform_epia_dvi;
55extern int viafb_device_lcd_dualedge;
56extern int viafb_bus_width;
57extern int viafb_display_hardware_layout;
58extern struct offset offset_reg;
59extern struct viafb_par *viaparinfo;
60extern struct viafb_par *viaparinfo1;
61extern struct fb_info *viafbinfo;
62extern struct fb_info *viafbinfo1;
63extern int viafb_DeviceStatus;
64extern int viafb_refresh;
65extern int viafb_refresh1;
66extern int viafb_lcd_dsp_method;
67extern int viafb_lcd_mode;
68
69extern int viafb_CRT_ON;
70extern unsigned int viafb_second_xres;
71extern unsigned int viafb_second_yres;
72extern int viafb_hotplug_Xres;
73extern int viafb_hotplug_Yres;
74extern int viafb_hotplug_bpp;
75extern int viafb_hotplug_refresh;
76extern int viafb_primary_dev;
77
78extern int viafb_lcd_panel_id;
79
80#endif /* __GLOBAL_H__ */