diff options
Diffstat (limited to 'drivers/char/tb0219.c')
-rw-r--r-- | drivers/char/tb0219.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/char/tb0219.c b/drivers/char/tb0219.c index ad264185eb10..34c63f85104d 100644 --- a/drivers/char/tb0219.c +++ b/drivers/char/tb0219.c | |||
@@ -284,7 +284,7 @@ static void tb0219_pci_irq_init(void) | |||
284 | vr41xx_set_irq_level(TB0219_PCI_SLOT3_PIN, IRQ_LEVEL_LOW); | 284 | vr41xx_set_irq_level(TB0219_PCI_SLOT3_PIN, IRQ_LEVEL_LOW); |
285 | } | 285 | } |
286 | 286 | ||
287 | static int __devinit tb0219_probe(struct platform_device *dev) | 287 | static int tb0219_probe(struct platform_device *dev) |
288 | { | 288 | { |
289 | int retval; | 289 | int retval; |
290 | 290 | ||
@@ -318,7 +318,7 @@ static int __devinit tb0219_probe(struct platform_device *dev) | |||
318 | return 0; | 318 | return 0; |
319 | } | 319 | } |
320 | 320 | ||
321 | static int __devexit tb0219_remove(struct platform_device *dev) | 321 | static int tb0219_remove(struct platform_device *dev) |
322 | { | 322 | { |
323 | _machine_restart = old_machine_restart; | 323 | _machine_restart = old_machine_restart; |
324 | 324 | ||
@@ -334,7 +334,7 @@ static struct platform_device *tb0219_platform_device; | |||
334 | 334 | ||
335 | static struct platform_driver tb0219_device_driver = { | 335 | static struct platform_driver tb0219_device_driver = { |
336 | .probe = tb0219_probe, | 336 | .probe = tb0219_probe, |
337 | .remove = __devexit_p(tb0219_remove), | 337 | .remove = tb0219_remove, |
338 | .driver = { | 338 | .driver = { |
339 | .name = "TB0219", | 339 | .name = "TB0219", |
340 | .owner = THIS_MODULE, | 340 | .owner = THIS_MODULE, |