Merge branch 'master' of git://localhost/acess2
[tpg/acess2.git] / KernelLand / Modules / Display / NVidia / main.c
1 /*
2  * Acess2 NVidia Graphics Driver
3  * - By John Hodge (thePowersGang)
4  * 
5  * main.c
6  * - Driver Core
7  *
8  * Reference: linux/drivers/video/nvidia
9  */
10 #define DEBUG   1
11 #define VERSION VER2(0,1)
12 #include <acess.h>
13 #include <modules.h>
14 #include <fs_devfs.h>
15 #include <drv_pci.h>
16 #include "regs.h"
17
18 // === PROTOTYPES ===
19  int    NV_Install(char **Arguments);
20  int    NV_Cleanup(void);
21
22 // === GLOBALS ===
23 MODULE_DEFINE(0, Video_NVidia, VERSION, NV_Install, NV_Cleanup, NULL);
24
25 // === CODE ===
26 int NV_Install(char **Arguments)
27 {
28         return MODERR_NOTNEEDED;
29 }
30
31 int NV_Cleanup(void)
32 {
33         return 0;
34 }
35

UCC git Repository :: git.ucc.asn.au