[PATCH] make various thing static
Another rollup of patches which give various symbols static scope Signed-off-by: Adrian Bunk <bunk@stusta.de> 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
d763b7a473
commit
52c1da3953
@@ -45,7 +45,7 @@ __report_bad_irq(unsigned int irq, irq_desc_t *desc, irqreturn_t action_ret)
|
||||
}
|
||||
}
|
||||
|
||||
void report_bad_irq(unsigned int irq, irq_desc_t *desc, irqreturn_t action_ret)
|
||||
static void report_bad_irq(unsigned int irq, irq_desc_t *desc, irqreturn_t action_ret)
|
||||
{
|
||||
static int count = 100;
|
||||
|
||||
|
@@ -730,7 +730,7 @@ static int obsparm_copy_string(const char *val, struct kernel_param *kp)
|
||||
return 0;
|
||||
}
|
||||
|
||||
int set_obsolete(const char *val, struct kernel_param *kp)
|
||||
static int set_obsolete(const char *val, struct kernel_param *kp)
|
||||
{
|
||||
unsigned int min, max;
|
||||
unsigned int size, maxsize;
|
||||
|
@@ -81,7 +81,7 @@ static int nr_copy_pages_check;
|
||||
extern char resume_file[];
|
||||
|
||||
/* Local variables that should not be affected by save */
|
||||
unsigned int nr_copy_pages __nosavedata = 0;
|
||||
static unsigned int nr_copy_pages __nosavedata = 0;
|
||||
|
||||
/* Suspend pagedir is allocated before final copy, therefore it
|
||||
must be freed after resume
|
||||
|
Reference in New Issue
Block a user