diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2012-11-19 13:26:09 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-11-28 15:23:41 -0500 |
commit | 77f37917a6f2bd8635b553178bb34bdd80f08e40 (patch) | |
tree | 712f137581670232be398f87acbf019af0e4b5a8 /drivers/pwm | |
parent | 3e9fe83d278cce6974f0a4d1870c0ff4a0b74ba5 (diff) |
pwm: remove use of __devexit
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>
Diffstat (limited to 'drivers/pwm')
-rw-r--r-- | drivers/pwm/pwm-ab8500.c | 2 | ||||
-rw-r--r-- | drivers/pwm/pwm-bfin.c | 2 | ||||
-rw-r--r-- | drivers/pwm/pwm-imx.c | 2 | ||||
-rw-r--r-- | drivers/pwm/pwm-jz4740.c | 2 | ||||
-rw-r--r-- | drivers/pwm/pwm-lpc32xx.c | 2 | ||||
-rw-r--r-- | drivers/pwm/pwm-mxs.c | 2 | ||||
-rw-r--r-- | drivers/pwm/pwm-puv3.c | 2 | ||||
-rw-r--r-- | drivers/pwm/pwm-pxa.c | 2 | ||||
-rw-r--r-- | drivers/pwm/pwm-samsung.c | 2 | ||||
-rw-r--r-- | drivers/pwm/pwm-tegra.c | 2 | ||||
-rw-r--r-- | drivers/pwm/pwm-tiecap.c | 2 | ||||
-rw-r--r-- | drivers/pwm/pwm-tiehrpwm.c | 2 |
12 files changed, 12 insertions, 12 deletions
diff --git a/drivers/pwm/pwm-ab8500.c b/drivers/pwm/pwm-ab8500.c index a2f586ae1093..4248d0418273 100644 --- a/drivers/pwm/pwm-ab8500.c +++ b/drivers/pwm/pwm-ab8500.c | |||
@@ -122,7 +122,7 @@ static int ab8500_pwm_probe(struct platform_device *pdev) | |||
122 | return 0; | 122 | return 0; |
123 | } | 123 | } |
124 | 124 | ||
125 | static int __devexit ab8500_pwm_remove(struct platform_device *pdev) | 125 | static int ab8500_pwm_remove(struct platform_device *pdev) |
126 | { | 126 | { |
127 | struct ab8500_pwm_chip *ab8500 = platform_get_drvdata(pdev); | 127 | struct ab8500_pwm_chip *ab8500 = platform_get_drvdata(pdev); |
128 | int err; | 128 | int err; |
diff --git a/drivers/pwm/pwm-bfin.c b/drivers/pwm/pwm-bfin.c index bcb60fe08762..7631ef194de7 100644 --- a/drivers/pwm/pwm-bfin.c +++ b/drivers/pwm/pwm-bfin.c | |||
@@ -139,7 +139,7 @@ static int bfin_pwm_probe(struct platform_device *pdev) | |||
139 | return 0; | 139 | return 0; |
140 | } | 140 | } |
141 | 141 | ||
142 | static int __devexit bfin_pwm_remove(struct platform_device *pdev) | 142 | static int bfin_pwm_remove(struct platform_device *pdev) |
143 | { | 143 | { |
144 | struct bfin_pwm_chip *pwm = platform_get_drvdata(pdev); | 144 | struct bfin_pwm_chip *pwm = platform_get_drvdata(pdev); |
145 | 145 | ||
diff --git a/drivers/pwm/pwm-imx.c b/drivers/pwm/pwm-imx.c index 0b3c296449b4..8f26e9fcea97 100644 --- a/drivers/pwm/pwm-imx.c +++ b/drivers/pwm/pwm-imx.c | |||
@@ -290,7 +290,7 @@ static int imx_pwm_probe(struct platform_device *pdev) | |||
290 | return 0; | 290 | return 0; |
291 | } | 291 | } |
292 | 292 | ||
293 | static int __devexit imx_pwm_remove(struct platform_device *pdev) | 293 | static int imx_pwm_remove(struct platform_device *pdev) |
294 | { | 294 | { |
295 | struct imx_chip *imx; | 295 | struct imx_chip *imx; |
296 | 296 | ||
diff --git a/drivers/pwm/pwm-jz4740.c b/drivers/pwm/pwm-jz4740.c index 6b6ec4df0686..0a2ede3c3932 100644 --- a/drivers/pwm/pwm-jz4740.c +++ b/drivers/pwm/pwm-jz4740.c | |||
@@ -191,7 +191,7 @@ static int jz4740_pwm_probe(struct platform_device *pdev) | |||
191 | return 0; | 191 | return 0; |
192 | } | 192 | } |
193 | 193 | ||
194 | static int __devexit jz4740_pwm_remove(struct platform_device *pdev) | 194 | static int jz4740_pwm_remove(struct platform_device *pdev) |
195 | { | 195 | { |
196 | struct jz4740_pwm_chip *jz4740 = platform_get_drvdata(pdev); | 196 | struct jz4740_pwm_chip *jz4740 = platform_get_drvdata(pdev); |
197 | int ret; | 197 | int ret; |
diff --git a/drivers/pwm/pwm-lpc32xx.c b/drivers/pwm/pwm-lpc32xx.c index 33967a084789..015a82235620 100644 --- a/drivers/pwm/pwm-lpc32xx.c +++ b/drivers/pwm/pwm-lpc32xx.c | |||
@@ -118,7 +118,7 @@ static int lpc32xx_pwm_probe(struct platform_device *pdev) | |||
118 | return 0; | 118 | return 0; |
119 | } | 119 | } |
120 | 120 | ||
121 | static int __devexit lpc32xx_pwm_remove(struct platform_device *pdev) | 121 | static int lpc32xx_pwm_remove(struct platform_device *pdev) |
122 | { | 122 | { |
123 | struct lpc32xx_pwm_chip *lpc32xx = platform_get_drvdata(pdev); | 123 | struct lpc32xx_pwm_chip *lpc32xx = platform_get_drvdata(pdev); |
124 | 124 | ||
diff --git a/drivers/pwm/pwm-mxs.c b/drivers/pwm/pwm-mxs.c index 4262d15231d0..7ec345f01831 100644 --- a/drivers/pwm/pwm-mxs.c +++ b/drivers/pwm/pwm-mxs.c | |||
@@ -174,7 +174,7 @@ static int mxs_pwm_probe(struct platform_device *pdev) | |||
174 | return 0; | 174 | return 0; |
175 | } | 175 | } |
176 | 176 | ||
177 | static int __devexit mxs_pwm_remove(struct platform_device *pdev) | 177 | static int mxs_pwm_remove(struct platform_device *pdev) |
178 | { | 178 | { |
179 | struct mxs_pwm_chip *mxs = platform_get_drvdata(pdev); | 179 | struct mxs_pwm_chip *mxs = platform_get_drvdata(pdev); |
180 | 180 | ||
diff --git a/drivers/pwm/pwm-puv3.c b/drivers/pwm/pwm-puv3.c index c1ee78ad5fcf..b882f6032fee 100644 --- a/drivers/pwm/pwm-puv3.c +++ b/drivers/pwm/pwm-puv3.c | |||
@@ -142,7 +142,7 @@ static int pwm_probe(struct platform_device *pdev) | |||
142 | return 0; | 142 | return 0; |
143 | } | 143 | } |
144 | 144 | ||
145 | static int __devexit pwm_remove(struct platform_device *pdev) | 145 | static int pwm_remove(struct platform_device *pdev) |
146 | { | 146 | { |
147 | struct puv3_pwm_chip *puv3 = platform_get_drvdata(pdev); | 147 | struct puv3_pwm_chip *puv3 = platform_get_drvdata(pdev); |
148 | 148 | ||
diff --git a/drivers/pwm/pwm-pxa.c b/drivers/pwm/pwm-pxa.c index 644d45d1453b..f32fc4e66e0c 100644 --- a/drivers/pwm/pwm-pxa.c +++ b/drivers/pwm/pwm-pxa.c | |||
@@ -179,7 +179,7 @@ static int pwm_probe(struct platform_device *pdev) | |||
179 | return 0; | 179 | return 0; |
180 | } | 180 | } |
181 | 181 | ||
182 | static int __devexit pwm_remove(struct platform_device *pdev) | 182 | static int pwm_remove(struct platform_device *pdev) |
183 | { | 183 | { |
184 | struct pxa_pwm_chip *chip; | 184 | struct pxa_pwm_chip *chip; |
185 | 185 | ||
diff --git a/drivers/pwm/pwm-samsung.c b/drivers/pwm/pwm-samsung.c index 1f1ec3605b9d..e9b15d099c03 100644 --- a/drivers/pwm/pwm-samsung.c +++ b/drivers/pwm/pwm-samsung.c | |||
@@ -273,7 +273,7 @@ static int s3c_pwm_probe(struct platform_device *pdev) | |||
273 | return ret; | 273 | return ret; |
274 | } | 274 | } |
275 | 275 | ||
276 | static int __devexit s3c_pwm_remove(struct platform_device *pdev) | 276 | static int s3c_pwm_remove(struct platform_device *pdev) |
277 | { | 277 | { |
278 | struct s3c_chip *s3c = platform_get_drvdata(pdev); | 278 | struct s3c_chip *s3c = platform_get_drvdata(pdev); |
279 | int err; | 279 | int err; |
diff --git a/drivers/pwm/pwm-tegra.c b/drivers/pwm/pwm-tegra.c index 3e8ccbb10ac3..30c0e2b70ce8 100644 --- a/drivers/pwm/pwm-tegra.c +++ b/drivers/pwm/pwm-tegra.c | |||
@@ -210,7 +210,7 @@ static int tegra_pwm_probe(struct platform_device *pdev) | |||
210 | return 0; | 210 | return 0; |
211 | } | 211 | } |
212 | 212 | ||
213 | static int __devexit tegra_pwm_remove(struct platform_device *pdev) | 213 | static int tegra_pwm_remove(struct platform_device *pdev) |
214 | { | 214 | { |
215 | struct tegra_pwm_chip *pc = platform_get_drvdata(pdev); | 215 | struct tegra_pwm_chip *pc = platform_get_drvdata(pdev); |
216 | int i; | 216 | int i; |
diff --git a/drivers/pwm/pwm-tiecap.c b/drivers/pwm/pwm-tiecap.c index 0b9f89460b71..87c091b245cc 100644 --- a/drivers/pwm/pwm-tiecap.c +++ b/drivers/pwm/pwm-tiecap.c | |||
@@ -235,7 +235,7 @@ static int ecap_pwm_probe(struct platform_device *pdev) | |||
235 | return 0; | 235 | return 0; |
236 | } | 236 | } |
237 | 237 | ||
238 | static int __devexit ecap_pwm_remove(struct platform_device *pdev) | 238 | static int ecap_pwm_remove(struct platform_device *pdev) |
239 | { | 239 | { |
240 | struct ecap_pwm_chip *pc = platform_get_drvdata(pdev); | 240 | struct ecap_pwm_chip *pc = platform_get_drvdata(pdev); |
241 | 241 | ||
diff --git a/drivers/pwm/pwm-tiehrpwm.c b/drivers/pwm/pwm-tiehrpwm.c index 7c353c0a9473..9ffd389d0c8b 100644 --- a/drivers/pwm/pwm-tiehrpwm.c +++ b/drivers/pwm/pwm-tiehrpwm.c | |||
@@ -443,7 +443,7 @@ static int ehrpwm_pwm_probe(struct platform_device *pdev) | |||
443 | return 0; | 443 | return 0; |
444 | } | 444 | } |
445 | 445 | ||
446 | static int __devexit ehrpwm_pwm_remove(struct platform_device *pdev) | 446 | static int ehrpwm_pwm_remove(struct platform_device *pdev) |
447 | { | 447 | { |
448 | struct ehrpwm_pwm_chip *pc = platform_get_drvdata(pdev); | 448 | struct ehrpwm_pwm_chip *pc = platform_get_drvdata(pdev); |
449 | 449 | ||