projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
99eb44f
)
V4L/DVB (4260): Stradis.c: make 2 functions static
author
Adrian Bunk
<bunk@stusta.de>
Tue, 27 Jun 2006 01:40:20 +0000
(22:40 -0300)
committer
Mauro Carvalho Chehab
<mchehab@infradead.org>
Tue, 27 Jun 2006 03:17:41 +0000
(
00:17
-0300)
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>
drivers/media/video/stradis.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/media/video/stradis.c
b/drivers/media/video/stradis.c
index 6be9c1131e1fc19898c74e9406e932b0e252a3f3..c18b31d9928c8d59f1e60906db240352dc105a65 100644
(file)
--- a/
drivers/media/video/stradis.c
+++ b/
drivers/media/video/stradis.c
@@
-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;
@@
-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");