[2.6 patch] drivers/media/video/stradis.c: make 2 functions static

From: Adrian Bunk
Date: Mon Jun 26 2006 - 17:52:03 EST


This patch makes two needlessly global functions static.

Signed-off-by: Adrian Bunk <bunk@xxxxxxxxx>

---

drivers/media/video/stradis.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

--- linux-2.6.17-mm2-full/drivers/media/video/stradis.c.old 2006-06-26 23:14:05.000000000 +0200
+++ linux-2.6.17-mm2-full/drivers/media/video/stradis.c 2006-06-26 23:14:35.000000000 +0200
@@ -2190,7 +2190,7 @@
.remove = __devexit_p(stradis_remove)
};

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

@@ -2203,7 +2203,7 @@
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");

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/