Commit 1a6a8a84 authored by Bill Pemberton's avatar Bill Pemberton Committed by Greg Kroah-Hartman

staging: nvec: remove use of __devexit

CONFIG_HOTPLUG is going away as an option so __devexit is no
longer needed.
Signed-off-by: default avatarBill Pemberton <wfp5p@virginia.edu>
Cc: Julian Andres Klode <jak@jak-linux.org>
Acked-by: default avatarMarc Dietrich <marvin24@gmx.de>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 063f9f6a
...@@ -853,7 +853,7 @@ static int tegra_nvec_probe(struct platform_device *pdev) ...@@ -853,7 +853,7 @@ static int tegra_nvec_probe(struct platform_device *pdev)
return 0; return 0;
} }
static int __devexit tegra_nvec_remove(struct platform_device *pdev) static int tegra_nvec_remove(struct platform_device *pdev)
{ {
struct nvec_chip *nvec = platform_get_drvdata(pdev); struct nvec_chip *nvec = platform_get_drvdata(pdev);
......
...@@ -159,7 +159,7 @@ static int nvec_kbd_probe(struct platform_device *pdev) ...@@ -159,7 +159,7 @@ static int nvec_kbd_probe(struct platform_device *pdev)
return err; return err;
} }
static int __devexit nvec_kbd_remove(struct platform_device *pdev) static int nvec_kbd_remove(struct platform_device *pdev)
{ {
input_unregister_device(keys_dev.input); input_unregister_device(keys_dev.input);
input_free_device(keys_dev.input); input_free_device(keys_dev.input);
......
...@@ -72,7 +72,7 @@ static int nvec_paz00_probe(struct platform_device *pdev) ...@@ -72,7 +72,7 @@ static int nvec_paz00_probe(struct platform_device *pdev)
return 0; return 0;
} }
static int __devexit nvec_paz00_remove(struct platform_device *pdev) static int nvec_paz00_remove(struct platform_device *pdev)
{ {
struct nvec_led *led = platform_get_drvdata(pdev); struct nvec_led *led = platform_get_drvdata(pdev);
......
...@@ -407,7 +407,7 @@ static int nvec_power_probe(struct platform_device *pdev) ...@@ -407,7 +407,7 @@ static int nvec_power_probe(struct platform_device *pdev)
return power_supply_register(&pdev->dev, psy); return power_supply_register(&pdev->dev, psy);
} }
static int __devexit nvec_power_remove(struct platform_device *pdev) static int nvec_power_remove(struct platform_device *pdev)
{ {
struct nvec_power *power = platform_get_drvdata(pdev); struct nvec_power *power = platform_get_drvdata(pdev);
......
...@@ -123,7 +123,7 @@ static int nvec_mouse_probe(struct platform_device *pdev) ...@@ -123,7 +123,7 @@ static int nvec_mouse_probe(struct platform_device *pdev)
return 0; return 0;
} }
static int __devexit nvec_mouse_remove(struct platform_device *pdev) static int nvec_mouse_remove(struct platform_device *pdev)
{ {
serio_unregister_port(ps2_dev.ser_dev); serio_unregister_port(ps2_dev.ser_dev);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment