aboutsummaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authorJohn Crispin <blogic@openwrt.org>2013-03-14 18:42:47 +0000
committerJohn Crispin <blogic@openwrt.org>2013-03-14 18:42:47 +0000
commit38dd5d6f4f331e0d39bedcac4b93582e3c261986 (patch)
tree711ae596174e13ddaf809a24bb0afb6ef641da4c /package
parent4f2afc87636db7d2c7566c73230d18c5cedd4a1d (diff)
downloadmaster-187ad058-38dd5d6f4f331e0d39bedcac4b93582e3c261986.tar.gz
master-187ad058-38dd5d6f4f331e0d39bedcac4b93582e3c261986.tar.bz2
master-187ad058-38dd5d6f4f331e0d39bedcac4b93582e3c261986.zip
[lantiq] make atm driver work with v3.8
Signed-off-by: John Crispin <blogic@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36017 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rw-r--r--package/platform/lantiq/ltq-atm/src/ltq_atm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/package/platform/lantiq/ltq-atm/src/ltq_atm.c b/package/platform/lantiq/ltq-atm/src/ltq_atm.c
index dcdb0a9c87..0e7e6e915f 100644
--- a/package/platform/lantiq/ltq-atm/src/ltq_atm.c
+++ b/package/platform/lantiq/ltq-atm/src/ltq_atm.c
@@ -1759,7 +1759,7 @@ static const struct of_device_id ltq_atm_match[] = {
};
MODULE_DEVICE_TABLE(of, ltq_atm_match);
-static int __devinit ltq_atm_probe(struct platform_device *pdev)
+static int ltq_atm_probe(struct platform_device *pdev)
{
const struct of_device_id *match;
struct ltq_atm_ops *ops = NULL;
@@ -1858,7 +1858,7 @@ INIT_PRIV_DATA_FAIL:
return ret;
}
-static int __devexit ltq_atm_remove(struct platform_device *pdev)
+static int ltq_atm_remove(struct platform_device *pdev)
{
int port_num;
struct ltq_atm_ops *ops = platform_get_drvdata(pdev);
@@ -1884,7 +1884,7 @@ static int __devexit ltq_atm_remove(struct platform_device *pdev)
static struct platform_driver ltq_atm_driver = {
.probe = ltq_atm_probe,
- .remove = __devexit_p(ltq_atm_remove),
+ .remove = ltq_atm_remove,
.driver = {
.name = "atm",
.owner = THIS_MODULE,