staging: comedi: ni_labpc_isadma: new module for ISA DMA support
[firefly-linux-kernel-4.4.55.git] / drivers / staging / comedi / drivers / ni_labpc_isadma.c
1 /*
2  * comedi/drivers/ni_labpc_isadma.c
3  * ISA DMA support for National Instruments Lab-PC series boards and
4  * compatibles.
5  *
6  * Extracted from ni_labpc.c:
7  * Copyright (C) 2001-2003 Frank Mori Hess <fmhess@users.sourceforge.net>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  */
19
20 #include <linux/module.h>
21
22 #include "ni_labpc_isadma.h"
23
24 static int __init ni_labpc_isadma_init_module(void)
25 {
26         return 0;
27 }
28 module_init(ni_labpc_isadma_init_module);
29
30 static void __exit ni_labpc_isadma_cleanup_module(void)
31 {
32 }
33 module_exit(ni_labpc_isadma_cleanup_module);
34
35 MODULE_AUTHOR("Comedi http://www.comedi.org");
36 MODULE_DESCRIPTION("Comedi NI Lab-PC ISA DMA support");
37 MODULE_LICENSE("GPL");