[PATCH 2.6.0-test5][OSS] nec_vr5477.c: add missing __devexit_p

From: Vinay K Nallamothu
Date: Sun Sep 21 2003 - 08:24:51 EST


--- linux-2.6.0-test3/sound/oss/nec_vrc5477.c 2003-08-09 12:11:40.000000000 +0530
+++ linux-2.6.0-test3-nvk/sound/oss/nec_vrc5477.c 2003-08-10 20:24:47.000000000 +0530
@@ -61,6 +61,7 @@
* 02.08.2001 0.1 Initial release
*/

+#include <linux/init.h>
#include <linux/module.h>
#include <linux/string.h>
#include <linux/kernel.h>
@@ -1965,7 +1966,7 @@
return -1;
}

-static void __devinit vrc5477_ac97_remove(struct pci_dev *dev)
+static void __devexit vrc5477_ac97_remove(struct pci_dev *dev)
{
struct vrc5477_ac97_state *s = pci_get_drvdata(dev);

@@ -2001,7 +2002,7 @@
.name = VRC5477_AC97_MODULE_NAME,
.id_table = id_table,
.probe = vrc5477_ac97_probe,
- .remove = vrc5477_ac97_remove,
+ .remove = __devexit_p(vrc5477_ac97_remove)
};

static int __init init_vrc5477_ac97(void)


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/