summaryrefslogtreecommitdiffstats
path: root/target/linux/generic/files/drivers/pwm/gpio-pwm.c
diff options
context:
space:
mode:
authorRoman Yeryomin <roman@advem.lv>2013-05-26 01:02:55 +0300
committerRoman Yeryomin <roman@advem.lv>2013-05-26 01:02:55 +0300
commit342045a35b1981a89e4bc80842b10c065e1050da (patch)
tree4140720b20e8d641c11da882010d6130a75fef21 /target/linux/generic/files/drivers/pwm/gpio-pwm.c
parent7338133dde8238afce34676214b494c8db96689b (diff)
parent1a116ce7818ecee5d167a9c0ebb1a0feca9120e6 (diff)
Merge trunk into realtek-unstable
Conflicts: Config.in feeds.conf.default package/base-files/files/etc/hotplug2-common.rules package/network/config/netifd/files/etc/init.d/network
Diffstat (limited to 'target/linux/generic/files/drivers/pwm/gpio-pwm.c')
-rw-r--r--target/linux/generic/files/drivers/pwm/gpio-pwm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/target/linux/generic/files/drivers/pwm/gpio-pwm.c b/target/linux/generic/files/drivers/pwm/gpio-pwm.c
index dff5d1d62..58e518fe7 100644
--- a/target/linux/generic/files/drivers/pwm/gpio-pwm.c
+++ b/target/linux/generic/files/drivers/pwm/gpio-pwm.c
@@ -205,7 +205,7 @@ gpio_pwm_request(struct pwm_channel *p)
return 0;
}
-static int __devinit
+static int
gpio_pwm_probe(struct platform_device *pdev)
{
struct gpio_pwm *gp;
@@ -256,7 +256,7 @@ err_alloc:
return ret;
}
-static int __devexit
+static int
gpio_pwm_remove(struct platform_device *pdev)
{
struct gpio_pwm *gp = platform_get_drvdata(pdev);
@@ -277,7 +277,7 @@ static struct platform_driver gpio_pwm_driver = {
.owner = THIS_MODULE,
},
.probe = gpio_pwm_probe,
- .remove = __devexit_p(gpio_pwm_remove),
+ .remove = gpio_pwm_remove,
};
static int __init gpio_pwm_init(void)