]> rtime.felk.cvut.cz Git - mf6xx.git/blobdiff - src/uio/mf614/kernel/mf614.c
Added missing MODULE_DEVICE_TABE. Hopefully it didn't break anything.
[mf6xx.git] / src / uio / mf614 / kernel / mf614.c
index d0e0530c182decfd5502fec56db4b3ec6d5083b2..4ca80933133446def7f95830f8a17ca2cf787a31 100755 (executable)
@@ -1,3 +1,22 @@
+/*
+ * UIO driver fo Humusoft MF614 DAQ card.
+ * Copyright (C) 2010--2011 Rostislav Lisovy <lisovy@gmail.com> 
+ * 
+ * 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.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ */
+
 #include <linux/init.h>
 #include <linux/module.h>
 #include <linux/device.h>
@@ -163,6 +182,8 @@ static void mf614_pci_remove(struct pci_dev *dev)
        pci_disable_device(dev);
        pci_set_drvdata(dev, NULL);
        pci_iounmap(dev, info->priv);
+       iounmap(info->mem[0].internal_addr);
+       iounmap(info->mem[1].internal_addr);
        
        kfree(info);
 }
@@ -176,6 +197,7 @@ static struct pci_device_id mf614_pci_id[] __devinitdata = {
        },
        { 0, }
 };
+MODULE_DEVICE_TABLE(pci, mf614_pci_driver);
 
 static struct pci_driver mf614_pci_driver = {
        .name = "mf614",