Skip to content

Commit

Permalink
V4L/DVB (13605): sh_mobile_ceu_camera: don't use __exit_p to wrap sh_…
Browse files Browse the repository at this point in the history
…mobile_ceu_remove

The function sh_mobile_ceu_remove is defined using __devexit, so don't
use __exit_p but __devexit_p to wrap it.

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: Douglas Schilling Landgraf <dougsland@redhat.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Uwe Kleine-König authored and Mauro Carvalho Chehab committed Dec 16, 2009
1 parent f68fdb9 commit 50e55fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/media/video/sh_mobile_ceu_camera.c
Original file line number Diff line number Diff line change
Expand Up @@ -1836,7 +1836,7 @@ static struct platform_driver sh_mobile_ceu_driver = {
.pm = &sh_mobile_ceu_dev_pm_ops,
},
.probe = sh_mobile_ceu_probe,
.remove = __exit_p(sh_mobile_ceu_remove),
.remove = __devexit_p(sh_mobile_ceu_remove),
};

static int __init sh_mobile_ceu_init(void)
Expand Down

0 comments on commit 50e55fd

Please sign in to comment.