Skip to content

Commit

Permalink
V4L/DVB (4260): Stradis.c: make 2 functions static
Browse files Browse the repository at this point in the history
This patch makes two needlessly global functions static.

Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
  • Loading branch information
Adrian Bunk authored and Mauro Carvalho Chehab committed Jun 27, 2006
1 parent 99eb44f commit b9553d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/media/video/stradis.c
Original file line number Diff line number Diff line change
Expand Up @@ -2190,7 +2190,7 @@ static struct pci_driver stradis_driver = {
.remove = __devexit_p(stradis_remove)
};

int __init stradis_init(void)
static int __init stradis_init(void)
{
int retval;

Expand All @@ -2203,7 +2203,7 @@ int __init stradis_init(void)
return retval;
}

void __exit stradis_exit(void)
static void __exit stradis_exit(void)
{
pci_unregister_driver(&stradis_driver);
printk(KERN_INFO "stradis: module cleanup complete\n");
Expand Down

0 comments on commit b9553d7

Please sign in to comment.