diff options
Diffstat (limited to 'contrib/libdha/sysdep/pci_generic_os.c')
-rw-r--r-- | contrib/libdha/sysdep/pci_generic_os.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/contrib/libdha/sysdep/pci_generic_os.c b/contrib/libdha/sysdep/pci_generic_os.c new file mode 100644 index 000000000..8855bb4ba --- /dev/null +++ b/contrib/libdha/sysdep/pci_generic_os.c @@ -0,0 +1,15 @@ +/* + Generic stuff to compile VIDIX only on any system (SCRATCH) +*/ +#warn This stuff is not ported on yur system +static __inline__ int enable_os_io(void) +{ + printf("enable_os_io: generic function call\n"); + return 0; +} + +static __inline__ int disable_os_io(void) +{ + printf("disable_os_io: generic function call\n"); + return 0; +} |