diff options
author | Lad, Prabhakar <prabhakar.lad@ti.com> | 2012-08-14 08:23:09 +0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2012-08-14 15:45:49 +0400 |
commit | a1b3a6ce0f1510b14b18d019c4cda137585b1f69 (patch) | |
tree | b701d8cb9d3b56dd49ab2612008cd8453e043b7c /drivers/media/video/davinci/dm644x_ccdc.c | |
parent | 1511288620bd4ea794bae08871f9e108ca034b2d (diff) | |
download | linux-a1b3a6ce0f1510b14b18d019c4cda137585b1f69.tar.xz |
[media] media: davinci: fix section mismatch warnings
This patch fixes section mismatch warnings for
davinci video drivers.
[mchehab@redhat.com: applied it as a fixup over the previous (and wrong) changeset c6afbf2]
Signed-off-by: Lad, Prabhakar <prabhakar.lad@ti.com>
Signed-off-by: Manjunath Hadli <manjunath.hadli@ti.com>
Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/davinci/dm644x_ccdc.c')
-rw-r--r-- | drivers/media/video/davinci/dm644x_ccdc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/video/davinci/dm644x_ccdc.c b/drivers/media/video/davinci/dm644x_ccdc.c index 3ffb7f2da10f..ee7942b1996e 100644 --- a/drivers/media/video/davinci/dm644x_ccdc.c +++ b/drivers/media/video/davinci/dm644x_ccdc.c @@ -957,7 +957,7 @@ static struct ccdc_hw_device ccdc_hw_dev = { }, }; -static int __init dm644x_ccdc_probe(struct platform_device *pdev) +static int __devinit dm644x_ccdc_probe(struct platform_device *pdev) { struct resource *res; int status = 0; @@ -1068,7 +1068,7 @@ static const struct dev_pm_ops dm644x_ccdc_pm_ops = { .resume = dm644x_ccdc_resume, }; -static __refdata struct platform_driver dm644x_ccdc_driver = { +static struct platform_driver dm644x_ccdc_driver = { .driver = { .name = "dm644x_ccdc", .owner = THIS_MODULE, |