Commit 4b12b896 authored by Bill Pemberton's avatar Bill Pemberton Committed by Greg Kroah-Hartman
Browse files

watchdog: 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: Wim Van Sebroeck <wim@iguana.be>
Cc: Wan ZongShun <mcuos.com@gmail.com>
Cc: Ben Dooks <ben-linux@fluff.org>
Cc: Kukjin Kim <kgene.kim@samsung.com>
Acked-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 1d131368
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -275,7 +275,7 @@ out:
	return ret;
}

static int __devexit acq_remove(struct platform_device *dev)
static int acq_remove(struct platform_device *dev)
{
	misc_deregister(&acq_miscdev);
	release_region(wdt_start, 1);
+1 −1
Original line number Diff line number Diff line
@@ -282,7 +282,7 @@ unreg_stop:
	goto out;
}

static int __devexit advwdt_remove(struct platform_device *dev)
static int advwdt_remove(struct platform_device *dev)
{
	misc_deregister(&advwdt_miscdev);
	release_region(wdt_start, 1);
+1 −1
Original line number Diff line number Diff line
@@ -314,7 +314,7 @@ out:
	return rc;
}

static int __devexit ar7_wdt_remove(struct platform_device *pdev)
static int ar7_wdt_remove(struct platform_device *pdev)
{
	misc_deregister(&ar7_wdt_miscdev);
	clk_put(vbus_clk);
+1 −1
Original line number Diff line number Diff line
@@ -216,7 +216,7 @@ static int at91wdt_probe(struct platform_device *pdev)
	return 0;
}

static int __devexit at91wdt_remove(struct platform_device *pdev)
static int at91wdt_remove(struct platform_device *pdev)
{
	int res;

+1 −1
Original line number Diff line number Diff line
@@ -270,7 +270,7 @@ err_clk_put:
	return err;
}

static int __devexit ath79_wdt_remove(struct platform_device *pdev)
static int ath79_wdt_remove(struct platform_device *pdev)
{
	misc_deregister(&ath79_wdt_miscdev);
	clk_disable(wdt_clk);
Loading