From edb7679fe49d1156a222440c3eaeba28ac63c2f6 Mon Sep 17 00:00:00 2001 From: blogic Date: Thu, 14 Mar 2013 18:42:38 +0000 Subject: [PATCH] [lantiq] make adsl mei driver work with v3.8 Signed-off-by: John Crispin git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36015 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/platform/lantiq/ltq-adsl-mei/src/lantiq_mei.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package/platform/lantiq/ltq-adsl-mei/src/lantiq_mei.c b/package/platform/lantiq/ltq-adsl-mei/src/lantiq_mei.c index f9d54d28cb..443b9d90ac 100644 --- a/package/platform/lantiq/ltq-adsl-mei/src/lantiq_mei.c +++ b/package/platform/lantiq/ltq-adsl-mei/src/lantiq_mei.c @@ -2717,7 +2717,7 @@ EXPORT_SYMBOL(ifx_mei_atm_showtime_check); /* * Writing function for linux proc filesystem */ -static int __devinit ltq_mei_probe(struct platform_device *pdev) +static int ltq_mei_probe(struct platform_device *pdev) { int i = 0; static struct class *dsl_class; @@ -2743,7 +2743,7 @@ static int __devinit ltq_mei_probe(struct platform_device *pdev) return 0; } -static int __devexit ltq_mei_remove(struct platform_device *pdev) +static int ltq_mei_remove(struct platform_device *pdev) { int i = 0; int num; @@ -2767,7 +2767,7 @@ static const struct of_device_id ltq_mei_match[] = { static struct platform_driver ltq_mei_driver = { .probe = ltq_mei_probe, - .remove = __devexit_p(ltq_mei_remove), + .remove = ltq_mei_remove, .driver = { .name = "lantiq,mei-xway", .owner = THIS_MODULE, -- 2.11.0