From: Adrian Bunk On Wed, Jul 25, 2007 at 04:03:04AM -0700, Andrew Morton wrote: >... > Changes since 2.6.22-rc6-mm1: >... > +slow-down-printk-during-boot.patch >... > Misc >... This patch makes two needlessly global variables static. Signed-off-by: Adrian Bunk Cc: Dave Jones Cc: Randy Dunlap Signed-off-by: Andrew Morton --- kernel/printk.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff -puN kernel/printk.c~slow-down-printk-during-boot-fix-3 kernel/printk.c --- a/kernel/printk.c~slow-down-printk-during-boot-fix-3 +++ a/kernel/printk.c @@ -166,8 +166,8 @@ __setup("log_buf_len=", log_buf_len_setu #ifdef CONFIG_BOOT_PRINTK_DELAY -unsigned int boot_delay; /* msecs delay after each printk during bootup */ -unsigned long long printk_delay_msec; /* per msec, based on boot_delay */ +static unsigned int boot_delay; /* msecs delay after each printk during bootup */ +static unsigned long long printk_delay_msec; /* per msec, based on boot_delay */ static int __init boot_delay_setup(char *str) { _