[PATCH] make lots of things static
Another large rollup of various patches from Adrian which make things static where they were needlessly exported. Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
committed by
Linus Torvalds
parent
c31403a1f5
commit
408b664a7d
@ -466,7 +466,7 @@ static int stl_parsebrd(stlconf_t *confp, char **argp);
|
||||
|
||||
static unsigned long stl_atol(char *str);
|
||||
|
||||
int stl_init(void);
|
||||
static int stl_init(void);
|
||||
static int stl_open(struct tty_struct *tty, struct file *filp);
|
||||
static void stl_close(struct tty_struct *tty, struct file *filp);
|
||||
static int stl_write(struct tty_struct *tty, const unsigned char *buf, int count);
|
||||
@ -3063,7 +3063,7 @@ static struct tty_operations stl_ops = {
|
||||
|
||||
/*****************************************************************************/
|
||||
|
||||
int __init stl_init(void)
|
||||
static int __init stl_init(void)
|
||||
{
|
||||
int i;
|
||||
printk(KERN_INFO "%s: version %s\n", stl_drvtitle, stl_drvversion);
|
||||
|
Reference in New Issue
Block a user