]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
pwm: remove use of __devexit
authorBill Pemberton <wfp5p@virginia.edu>
Mon, 19 Nov 2012 18:26:09 +0000 (13:26 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 28 Nov 2012 20:23:41 +0000 (12:23 -0800)
CONFIG_HOTPLUG is going away as an option so __devexit is no
longer needed.

Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Acked-by: Thierry Reding <thierry.reding@avionic-design.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
12 files changed:
drivers/pwm/pwm-ab8500.c
drivers/pwm/pwm-bfin.c
drivers/pwm/pwm-imx.c
drivers/pwm/pwm-jz4740.c
drivers/pwm/pwm-lpc32xx.c
drivers/pwm/pwm-mxs.c
drivers/pwm/pwm-puv3.c
drivers/pwm/pwm-pxa.c
drivers/pwm/pwm-samsung.c
drivers/pwm/pwm-tegra.c
drivers/pwm/pwm-tiecap.c
drivers/pwm/pwm-tiehrpwm.c

index a2f586ae10930a9fe9fa6e273736a476542eedac..4248d0418273a5f8589947d97b2dd0dcaaa5a221 100644 (file)
@@ -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;
index bcb60fe087623aa3e441e0ef4bd10fe42d080fba..7631ef194de7dc80ba28b98da9b340e519ac5095 100644 (file)
@@ -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);
 
index 0b3c296449b4599f957fb5e90d940d7bf5c4931f..8f26e9fcea976e259443dedfcd9997d67009f7f3 100644 (file)
@@ -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;
 
index 6b6ec4df0686426b96bba60744207183516cfc12..0a2ede3c3932cf440e1b72d38d199bfac759335b 100644 (file)
@@ -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;
index 33967a08478920dd9365534e6624704834b7dbd8..015a82235620e648e3b5f49f974ea9f2f7c01ad7 100644 (file)
@@ -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);
 
index 4262d15231d075e693dd32d63a186d1f0780889c..7ec345f01831cf216732236709b3b00be603a780 100644 (file)
@@ -174,7 +174,7 @@ static int mxs_pwm_probe(struct platform_device *pdev)
        return 0;
 }
 
-static int __devexit mxs_pwm_remove(struct platform_device *pdev)
+static int mxs_pwm_remove(struct platform_device *pdev)
 {
        struct mxs_pwm_chip *mxs = platform_get_drvdata(pdev);
 
index c1ee78ad5fcf6a178864f2af2473194679c75ed1..b882f6032feed55e2e9236c5264522ff6bd393bf 100644 (file)
@@ -142,7 +142,7 @@ static int pwm_probe(struct platform_device *pdev)
        return 0;
 }
 
-static int __devexit pwm_remove(struct platform_device *pdev)
+static int pwm_remove(struct platform_device *pdev)
 {
        struct puv3_pwm_chip *puv3 = platform_get_drvdata(pdev);
 
index 644d45d1453bd6a196a354b8bb1414b8db2c1403..f32fc4e66e0c96675b4edaae9a545f9e065ad72e 100644 (file)
@@ -179,7 +179,7 @@ static int pwm_probe(struct platform_device *pdev)
        return 0;
 }
 
-static int __devexit pwm_remove(struct platform_device *pdev)
+static int pwm_remove(struct platform_device *pdev)
 {
        struct pxa_pwm_chip *chip;
 
index 1f1ec3605b9dbc6544675d285282155ee9e84cde..e9b15d099c03cb87d668aa500d5752d18e471061 100644 (file)
@@ -273,7 +273,7 @@ static int s3c_pwm_probe(struct platform_device *pdev)
        return ret;
 }
 
-static int __devexit s3c_pwm_remove(struct platform_device *pdev)
+static int s3c_pwm_remove(struct platform_device *pdev)
 {
        struct s3c_chip *s3c = platform_get_drvdata(pdev);
        int err;
index 3e8ccbb10ac310432eb953a77f1d5b8e0344b06b..30c0e2b70ce8bf4127cb22cb827f2e266e6950a4 100644 (file)
@@ -210,7 +210,7 @@ static int tegra_pwm_probe(struct platform_device *pdev)
        return 0;
 }
 
-static int __devexit tegra_pwm_remove(struct platform_device *pdev)
+static int tegra_pwm_remove(struct platform_device *pdev)
 {
        struct tegra_pwm_chip *pc = platform_get_drvdata(pdev);
        int i;
index 0b9f89460b71b03c27b56d5cbb68688515a381fe..87c091b245cc74a6225504ce4c8d0c0b3e65f2db 100644 (file)
@@ -235,7 +235,7 @@ static int ecap_pwm_probe(struct platform_device *pdev)
        return 0;
 }
 
-static int __devexit ecap_pwm_remove(struct platform_device *pdev)
+static int ecap_pwm_remove(struct platform_device *pdev)
 {
        struct ecap_pwm_chip *pc = platform_get_drvdata(pdev);
 
index 7c353c0a9473d1e535306cb766029cb207aedba2..9ffd389d0c8b062f651f73be1b46a66dac2fefc3 100644 (file)
@@ -443,7 +443,7 @@ static int ehrpwm_pwm_probe(struct platform_device *pdev)
        return 0;
 }
 
-static int __devexit ehrpwm_pwm_remove(struct platform_device *pdev)
+static int ehrpwm_pwm_remove(struct platform_device *pdev)
 {
        struct ehrpwm_pwm_chip *pc = platform_get_drvdata(pdev);