move global data into engine

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@5597 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
shatty
2003-12-06 23:56:41 +00:00
parent 2530523976
commit 6f1ef82c3d
12 changed files with 8 additions and 8 deletions
-1
View File
@@ -13,7 +13,6 @@ Addon nm.accelerant : accelerants :
GetDeviceInfo.c GetDeviceInfo.c
GetModeInfo.c GetModeInfo.c
GetTimingConstraints.c GetTimingConstraints.c
GlobalData.c
InitAccelerant.c InitAccelerant.c
Overlay.c Overlay.c
ProposeDisplayMode.c ProposeDisplayMode.c
+1 -1
View File
@@ -9,7 +9,7 @@
#include <stdio.h> #include <stdio.h>
#include <sys/ioctl.h> #include <sys/ioctl.h>
#include "DriverInterface.h" #include "DriverInterface.h"
#include "global.h" #include "nm_globals.h"
#include "nm_proto.h" #include "nm_proto.h"
#include "be_driver_proto.h" #include "be_driver_proto.h"
@@ -10,6 +10,7 @@ StaticLibrary neomagic_engine :
nm_crtc.c nm_crtc.c
nm_dac.c nm_dac.c
nm_general.c nm_general.c
nm_globals.c
nm_info.c nm_info.c
nm_support.c nm_support.c
; ;
@@ -7,7 +7,7 @@
Rudolf Cornelissen 4/2003- Rudolf Cornelissen 4/2003-
*/ */
#include "acc_std.h" #include "nm_std.h"
int fd; int fd;
shared_info *si; shared_info *si;
@@ -3,6 +3,6 @@
#include <math.h> #include <math.h>
#include <OS.h> #include <OS.h>
#include "DriverInterface.h" #include "DriverInterface.h"
#include "global.h" #include "nm_globals.h"
#include "nm_proto.h" #include "nm_proto.h"
#include "nm_macros.h" #include "nm_macros.h"
-1
View File
@@ -13,7 +13,6 @@ Addon nv.accelerant : accelerants :
GetDeviceInfo.c GetDeviceInfo.c
GetModeInfo.c GetModeInfo.c
GetTimingConstraints.c GetTimingConstraints.c
GlobalData.c
InitAccelerant.c InitAccelerant.c
Overlay.c Overlay.c
ProposeDisplayMode.c ProposeDisplayMode.c
+1 -1
View File
@@ -9,7 +9,7 @@
#include <stdio.h> #include <stdio.h>
#include <sys/ioctl.h> #include <sys/ioctl.h>
#include "DriverInterface.h" #include "DriverInterface.h"
#include "global.h" #include "nv_globals.h"
//apsed #include "nv_extern.h" //apsed #include "nv_extern.h"
#include "nv_proto.h" #include "nv_proto.h"
#include "be_driver_proto.h" #include "be_driver_proto.h"
@@ -11,6 +11,7 @@ StaticLibrary nvidia_engine :
nv_crtc2.c nv_crtc2.c
nv_dac.c nv_dac.c
nv_general.c nv_general.c
nv_globals.c
nv_i2c.c nv_i2c.c
nv_info.c nv_info.c
nv_maven.c nv_maven.c
@@ -6,7 +6,7 @@
Mark Watson Mark Watson
*/ */
#include "acc_std.h" #include "nv_std.h"
int fd; int fd;
shared_info *si; shared_info *si;
@@ -3,7 +3,7 @@
#include <math.h> #include <math.h>
#include <OS.h> #include <OS.h>
#include "DriverInterface.h" #include "DriverInterface.h"
#include "global.h" #include "nv_globals.h"
//apsed #include "nv_extern.h" //apsed #include "nv_extern.h"
#include "nv_proto.h" #include "nv_proto.h"
#include "nv_macros.h" #include "nv_macros.h"