|
@@ -0,0 +1,37 @@
|
|
|
+/*
|
|
|
+ * comedi/drivers/ni_labpc_isadma.c
|
|
|
+ * ISA DMA support for National Instruments Lab-PC series boards and
|
|
|
+ * compatibles.
|
|
|
+ *
|
|
|
+ * Extracted from ni_labpc.c:
|
|
|
+ * Copyright (C) 2001-2003 Frank Mori Hess <fmhess@users.sourceforge.net>
|
|
|
+ *
|
|
|
+ * This program is free software; you can redistribute it and/or modify
|
|
|
+ * it under the terms of the GNU General Public License as published by
|
|
|
+ * the Free Software Foundation; either version 2 of the License, or
|
|
|
+ * (at your option) any later version.
|
|
|
+ *
|
|
|
+ * This program is distributed in the hope that it will be useful,
|
|
|
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
+ * GNU General Public License for more details.
|
|
|
+ */
|
|
|
+
|
|
|
+#include <linux/module.h>
|
|
|
+
|
|
|
+#include "ni_labpc_isadma.h"
|
|
|
+
|
|
|
+static int __init ni_labpc_isadma_init_module(void)
|
|
|
+{
|
|
|
+ return 0;
|
|
|
+}
|
|
|
+module_init(ni_labpc_isadma_init_module);
|
|
|
+
|
|
|
+static void __exit ni_labpc_isadma_cleanup_module(void)
|
|
|
+{
|
|
|
+}
|
|
|
+module_exit(ni_labpc_isadma_cleanup_module);
|
|
|
+
|
|
|
+MODULE_AUTHOR("Comedi http://www.comedi.org");
|
|
|
+MODULE_DESCRIPTION("Comedi NI Lab-PC ISA DMA support");
|
|
|
+MODULE_LICENSE("GPL");
|