]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
misc: pti, stop using iomap's unmap on ioremap space
authorJiri Slaby <jslaby@suse.cz>
Tue, 7 Aug 2012 19:47:31 +0000 (21:47 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 10 Aug 2012 20:27:51 +0000 (13:27 -0700)
Ioremap space is different to iomap. ->probe function uses ioremap,
but ->remove calls pci_iounmap. That one is illegal. Fix that by using
iounmap.

Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Cc: J Freyensee <james_p_freyensee@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/misc/pti.c

index 88da085e450add278a46aeca2aa5ddc5c1cf4047..3bfc8e37cb514a8a0b7b207c1d9558c6d1191c9b 100644 (file)
@@ -402,7 +402,7 @@ static void __devexit pti_pci_remove(struct pci_dev *pdev)
 {
        struct pti_dev *drv_data = pci_get_drvdata(pdev);
 
-       pci_iounmap(pdev, drv_data->pti_ioaddr);
+       iounmap(drv_data->pti_ioaddr);
        pci_set_drvdata(pdev, NULL);
        kfree(drv_data);
        pci_release_region(pdev, 1);