Skip to content

Commit

Permalink
[media] davinci: fix build warning when CONFIG_DEBUG_SECTION_MISMATCH…
Browse files Browse the repository at this point in the history
… is enabled

Signed-off-by: Lad, Prabhakar <prabhakar.lad@ti.com>
Signed-off-by: Manjunath Hadli <manjunath.hadli@ti.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Lad, Prabhakar authored and Mauro Carvalho Chehab committed Aug 13, 2012
1 parent 8746add commit c6afbf2
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion drivers/media/video/davinci/dm355_ccdc.c
Original file line number Diff line number Diff line change
Expand Up @@ -1060,7 +1060,7 @@ static int dm355_ccdc_remove(struct platform_device *pdev)
return 0;
}

static struct platform_driver dm355_ccdc_driver = {
static __refdata struct platform_driver dm355_ccdc_driver = {
.driver = {
.name = "dm355_ccdc",
.owner = THIS_MODULE,
Expand Down
2 changes: 1 addition & 1 deletion drivers/media/video/davinci/dm644x_ccdc.c
Original file line number Diff line number Diff line change
Expand Up @@ -1068,7 +1068,7 @@ static const struct dev_pm_ops dm644x_ccdc_pm_ops = {
.resume = dm644x_ccdc_resume,
};

static struct platform_driver dm644x_ccdc_driver = {
static __refdata struct platform_driver dm644x_ccdc_driver = {
.driver = {
.name = "dm644x_ccdc",
.owner = THIS_MODULE,
Expand Down
2 changes: 1 addition & 1 deletion drivers/media/video/davinci/isif.c
Original file line number Diff line number Diff line change
Expand Up @@ -1148,7 +1148,7 @@ static int isif_remove(struct platform_device *pdev)
return 0;
}

static struct platform_driver isif_driver = {
static __refdata struct platform_driver isif_driver = {
.driver = {
.name = "isif",
.owner = THIS_MODULE,
Expand Down
2 changes: 1 addition & 1 deletion drivers/media/video/davinci/vpfe_capture.c
Original file line number Diff line number Diff line change
Expand Up @@ -2066,7 +2066,7 @@ static const struct dev_pm_ops vpfe_dev_pm_ops = {
.resume = vpfe_resume,
};

static struct platform_driver vpfe_driver = {
static __refdata struct platform_driver vpfe_driver = {
.driver = {
.name = CAPTURE_DRV_NAME,
.owner = THIS_MODULE,
Expand Down
2 changes: 1 addition & 1 deletion drivers/media/video/davinci/vpif.c
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,7 @@ static const struct dev_pm_ops vpif_pm = {
#define vpif_pm_ops NULL
#endif

static struct platform_driver vpif_driver = {
static __refdata struct platform_driver vpif_driver = {
.driver = {
.name = "vpif",
.owner = THIS_MODULE,
Expand Down
2 changes: 1 addition & 1 deletion drivers/media/video/davinci/vpss.c
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ static int __devexit vpss_remove(struct platform_device *pdev)
return 0;
}

static struct platform_driver vpss_driver = {
static __refdata struct platform_driver vpss_driver = {
.driver = {
.name = "vpss",
.owner = THIS_MODULE,
Expand Down

0 comments on commit c6afbf2

Please sign in to comment.