Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 173790
b: refs/heads/master
c: 9d440a0
h: refs/heads/master
v: v3
  • Loading branch information
Peter Huewe authored and Jiri Kosina committed Nov 9, 2009
1 parent 3950d95 commit 5394407
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 15 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: 891ddb95d06e9dc260500f02438a5cff1ba6650a
refs/heads/master: 9d440a087b9f1b43acbcad2a45d8605059b82e59
4 changes: 2 additions & 2 deletions trunk/drivers/media/video/cx18/cx18-driver.c
Original file line number Diff line number Diff line change
Expand Up @@ -1200,7 +1200,7 @@ static struct pci_driver cx18_pci_driver = {
.remove = cx18_remove,
};

static int module_start(void)
static int __init module_start(void)
{
printk(KERN_INFO "cx18: Start initialization, version %s\n", CX18_VERSION);

Expand All @@ -1224,7 +1224,7 @@ static int module_start(void)
return 0;
}

static void module_cleanup(void)
static void __exit module_cleanup(void)
{
pci_unregister_driver(&cx18_pci_driver);
}
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/media/video/cx23885/cx23885-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -1957,7 +1957,7 @@ static struct pci_driver cx23885_pci_driver = {
.resume = NULL,
};

static int cx23885_init(void)
static int __init cx23885_init(void)
{
printk(KERN_INFO "cx23885 driver version %d.%d.%d loaded\n",
(CX23885_VERSION_CODE >> 16) & 0xff,
Expand All @@ -1970,7 +1970,7 @@ static int cx23885_init(void)
return pci_register_driver(&cx23885_pci_driver);
}

static void cx23885_fini(void)
static void __exit cx23885_fini(void)
{
pci_unregister_driver(&cx23885_pci_driver);
}
Expand Down
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 @@ -959,7 +959,7 @@ static struct ccdc_hw_device ccdc_hw_dev = {
},
};

static int dm355_ccdc_init(void)
static int __init dm355_ccdc_init(void)
{
printk(KERN_NOTICE "dm355_ccdc_init\n");
if (vpfe_register_ccdc_device(&ccdc_hw_dev) < 0)
Expand All @@ -969,7 +969,7 @@ static int dm355_ccdc_init(void)
return 0;
}

static void dm355_ccdc_exit(void)
static void __exit dm355_ccdc_exit(void)
{
vpfe_unregister_ccdc_device(&ccdc_hw_dev);
}
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 @@ -859,7 +859,7 @@ static struct ccdc_hw_device ccdc_hw_dev = {
},
};

static int dm644x_ccdc_init(void)
static int __init dm644x_ccdc_init(void)
{
printk(KERN_NOTICE "dm644x_ccdc_init\n");
if (vpfe_register_ccdc_device(&ccdc_hw_dev) < 0)
Expand All @@ -869,7 +869,7 @@ static int dm644x_ccdc_init(void)
return 0;
}

static void dm644x_ccdc_exit(void)
static void __exit dm644x_ccdc_exit(void)
{
vpfe_unregister_ccdc_device(&ccdc_hw_dev);
}
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/media/video/ivtv/ivtv-driver.c
Original file line number Diff line number Diff line change
Expand Up @@ -1361,7 +1361,7 @@ static struct pci_driver ivtv_pci_driver = {
.remove = ivtv_remove,
};

static int module_start(void)
static int __init module_start(void)
{
printk(KERN_INFO "ivtv: Start initialization, version %s\n", IVTV_VERSION);

Expand All @@ -1385,7 +1385,7 @@ static int module_start(void)
return 0;
}

static void module_cleanup(void)
static void __exit module_cleanup(void)
{
pci_unregister_driver(&ivtv_pci_driver);
}
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/media/video/saa7134/saa7134-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -1319,7 +1319,7 @@ static struct pci_driver saa7134_pci_driver = {
#endif
};

static int saa7134_init(void)
static int __init saa7134_init(void)
{
INIT_LIST_HEAD(&saa7134_devlist);
printk(KERN_INFO "saa7130/34: v4l2 driver version %d.%d.%d loaded\n",
Expand All @@ -1333,7 +1333,7 @@ static int saa7134_init(void)
return pci_register_driver(&saa7134_pci_driver);
}

static void saa7134_fini(void)
static void __exit saa7134_fini(void)
{
pci_unregister_driver(&saa7134_pci_driver);
}
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/media/video/saa7164/saa7164-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -724,13 +724,13 @@ static struct pci_driver saa7164_pci_driver = {
.resume = NULL,
};

static int saa7164_init(void)
static int __init saa7164_init(void)
{
printk(KERN_INFO "saa7164 driver loaded\n");
return pci_register_driver(&saa7164_pci_driver);
}

static void saa7164_fini(void)
static void __exit saa7164_fini(void)
{
pci_unregister_driver(&saa7164_pci_driver);
}
Expand Down

0 comments on commit 5394407

Please sign in to comment.