Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 330848
b: refs/heads/master
c: a1b3a6c
h: refs/heads/master
v: v3
  • Loading branch information
Lad, Prabhakar authored and Mauro Carvalho Chehab committed Aug 14, 2012
1 parent fd29f65 commit 93c7c1f
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 1511288620bd4ea794bae08871f9e108ca034b2d
refs/heads/master: a1b3a6ce0f1510b14b18d019c4cda137585b1f69
4 changes: 2 additions & 2 deletions trunk/drivers/media/video/davinci/dm355_ccdc.c
Original file line number Diff line number Diff line change
Expand Up @@ -965,7 +965,7 @@ static struct ccdc_hw_device ccdc_hw_dev = {
},
};

static int __init dm355_ccdc_probe(struct platform_device *pdev)
static int __devinit dm355_ccdc_probe(struct platform_device *pdev)
{
void (*setup_pinmux)(void);
struct resource *res;
Expand Down Expand Up @@ -1060,7 +1060,7 @@ static int dm355_ccdc_remove(struct platform_device *pdev)
return 0;
}

static __refdata struct platform_driver dm355_ccdc_driver = {
static struct platform_driver dm355_ccdc_driver = {
.driver = {
.name = "dm355_ccdc",
.owner = THIS_MODULE,
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/media/video/davinci/dm644x_ccdc.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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,
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/media/video/davinci/isif.c
Original file line number Diff line number Diff line change
Expand Up @@ -1032,7 +1032,7 @@ static struct ccdc_hw_device isif_hw_dev = {
},
};

static int __init isif_probe(struct platform_device *pdev)
static int __devinit isif_probe(struct platform_device *pdev)
{
void (*setup_pinmux)(void);
struct resource *res;
Expand Down Expand Up @@ -1148,7 +1148,7 @@ static int isif_remove(struct platform_device *pdev)
return 0;
}

static __refdata struct platform_driver isif_driver = {
static struct platform_driver isif_driver = {
.driver = {
.name = "isif",
.owner = THIS_MODULE,
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/media/video/davinci/vpfe_capture.c
Original file line number Diff line number Diff line change
Expand Up @@ -1829,7 +1829,7 @@ static struct vpfe_device *vpfe_initialize(void)
* itself to the V4L2 driver and initializes fields of each
* device objects
*/
static __init int vpfe_probe(struct platform_device *pdev)
static __devinit int vpfe_probe(struct platform_device *pdev)
{
struct vpfe_subdev_info *sdinfo;
struct vpfe_config *vpfe_cfg;
Expand Down Expand Up @@ -2066,7 +2066,7 @@ static const struct dev_pm_ops vpfe_dev_pm_ops = {
.resume = vpfe_resume,
};

static __refdata struct platform_driver vpfe_driver = {
static struct platform_driver vpfe_driver = {
.driver = {
.name = CAPTURE_DRV_NAME,
.owner = THIS_MODULE,
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/media/video/davinci/vpif.c
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ int vpif_channel_getfid(u8 channel_id)
}
EXPORT_SYMBOL(vpif_channel_getfid);

static int __init vpif_probe(struct platform_device *pdev)
static int __devinit vpif_probe(struct platform_device *pdev)
{
int status = 0;

Expand Down Expand Up @@ -490,7 +490,7 @@ static const struct dev_pm_ops vpif_pm = {
#define vpif_pm_ops NULL
#endif

static __refdata struct platform_driver vpif_driver = {
static struct platform_driver vpif_driver = {
.driver = {
.name = "vpif",
.owner = THIS_MODULE,
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/media/video/davinci/vpss.c
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ void dm365_vpss_set_pg_frame_size(struct vpss_pg_frame_size frame_size)
}
EXPORT_SYMBOL(dm365_vpss_set_pg_frame_size);

static int __init vpss_probe(struct platform_device *pdev)
static int __devinit vpss_probe(struct platform_device *pdev)
{
struct resource *r1, *r2;
char *platform_name;
Expand Down Expand Up @@ -460,7 +460,7 @@ static int __devexit vpss_remove(struct platform_device *pdev)
return 0;
}

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

0 comments on commit 93c7c1f

Please sign in to comment.