diff options
-rw-r--r-- | drivers/w1/masters/matrox_w1.c | 2 | ||||
-rw-r--r-- | drivers/w1/masters/omap_hdq.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/w1/masters/matrox_w1.c b/drivers/w1/masters/matrox_w1.c index f667c26b2195..0a3c423a0c9d 100644 --- a/drivers/w1/masters/matrox_w1.c +++ b/drivers/w1/masters/matrox_w1.c | |||
@@ -55,7 +55,7 @@ static struct pci_driver matrox_w1_pci_driver = { | |||
55 | .name = "matrox_w1", | 55 | .name = "matrox_w1", |
56 | .id_table = matrox_w1_tbl, | 56 | .id_table = matrox_w1_tbl, |
57 | .probe = matrox_w1_probe, | 57 | .probe = matrox_w1_probe, |
58 | .remove = __devexit_p(matrox_w1_remove), | 58 | .remove = matrox_w1_remove, |
59 | }; | 59 | }; |
60 | 60 | ||
61 | /* | 61 | /* |
diff --git a/drivers/w1/masters/omap_hdq.c b/drivers/w1/masters/omap_hdq.c index ca8e60bb2f9c..652ca7f207e3 100644 --- a/drivers/w1/masters/omap_hdq.c +++ b/drivers/w1/masters/omap_hdq.c | |||
@@ -74,7 +74,7 @@ static int __devexit omap_hdq_remove(struct platform_device *pdev); | |||
74 | 74 | ||
75 | static struct platform_driver omap_hdq_driver = { | 75 | static struct platform_driver omap_hdq_driver = { |
76 | .probe = omap_hdq_probe, | 76 | .probe = omap_hdq_probe, |
77 | .remove = __devexit_p(omap_hdq_remove), | 77 | .remove = omap_hdq_remove, |
78 | .driver = { | 78 | .driver = { |
79 | .name = "omap_hdq", | 79 | .name = "omap_hdq", |
80 | }, | 80 | }, |