Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 77f37917 authored by Bill Pemberton's avatar Bill Pemberton Committed by Greg Kroah-Hartman
Browse files

pwm: 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>
Acked-by: default avatarThierry Reding <thierry.reding@avionic-design.de>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 3e9fe83d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -122,7 +122,7 @@ static int ab8500_pwm_probe(struct platform_device *pdev)
	return 0;
}

static int __devexit ab8500_pwm_remove(struct platform_device *pdev)
static int ab8500_pwm_remove(struct platform_device *pdev)
{
	struct ab8500_pwm_chip *ab8500 = platform_get_drvdata(pdev);
	int err;
+1 −1
Original line number Diff line number Diff line
@@ -139,7 +139,7 @@ static int bfin_pwm_probe(struct platform_device *pdev)
	return 0;
}

static int __devexit bfin_pwm_remove(struct platform_device *pdev)
static int bfin_pwm_remove(struct platform_device *pdev)
{
	struct bfin_pwm_chip *pwm = platform_get_drvdata(pdev);

+1 −1
Original line number Diff line number Diff line
@@ -290,7 +290,7 @@ static int imx_pwm_probe(struct platform_device *pdev)
	return 0;
}

static int __devexit imx_pwm_remove(struct platform_device *pdev)
static int imx_pwm_remove(struct platform_device *pdev)
{
	struct imx_chip *imx;

+1 −1
Original line number Diff line number Diff line
@@ -191,7 +191,7 @@ static int jz4740_pwm_probe(struct platform_device *pdev)
	return 0;
}

static int __devexit jz4740_pwm_remove(struct platform_device *pdev)
static int jz4740_pwm_remove(struct platform_device *pdev)
{
	struct jz4740_pwm_chip *jz4740 = platform_get_drvdata(pdev);
	int ret;
+1 −1
Original line number Diff line number Diff line
@@ -118,7 +118,7 @@ static int lpc32xx_pwm_probe(struct platform_device *pdev)
	return 0;
}

static int __devexit lpc32xx_pwm_remove(struct platform_device *pdev)
static int lpc32xx_pwm_remove(struct platform_device *pdev)
{
	struct lpc32xx_pwm_chip *lpc32xx = platform_get_drvdata(pdev);

Loading