aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/kernel/setup-common.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/powerpc/kernel/setup-common.c')
-rw-r--r--arch/powerpc/kernel/setup-common.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/arch/powerpc/kernel/setup-common.c b/arch/powerpc/kernel/setup-common.c
index 1b0e26013a62..1362cd62b3fa 100644
--- a/arch/powerpc/kernel/setup-common.c
+++ b/arch/powerpc/kernel/setup-common.c
@@ -81,8 +81,6 @@ EXPORT_SYMBOL_GPL(boot_cpuid);
81 81
82unsigned long klimit = (unsigned long) _end; 82unsigned long klimit = (unsigned long) _end;
83 83
84char cmd_line[COMMAND_LINE_SIZE];
85
86/* 84/*
87 * This still seems to be needed... -- paulus 85 * This still seems to be needed... -- paulus
88 */ 86 */
@@ -94,6 +92,9 @@ struct screen_info screen_info = {
94 .orig_video_isVGA = 1, 92 .orig_video_isVGA = 1,
95 .orig_video_points = 16 93 .orig_video_points = 16
96}; 94};
95#if defined(CONFIG_FB_VGA16_MODULE)
96EXPORT_SYMBOL(screen_info);
97#endif
97 98
98/* Variables required to store legacy IO irq routing */ 99/* Variables required to store legacy IO irq routing */
99int of_i8042_kbd_irq; 100int of_i8042_kbd_irq;
@@ -382,7 +383,7 @@ void __init check_for_initrd(void)
382 initrd_start = initrd_end = 0; 383 initrd_start = initrd_end = 0;
383 384
384 if (initrd_start) 385 if (initrd_start)
385 printk("Found initrd at 0x%lx:0x%lx\n", initrd_start, initrd_end); 386 pr_info("Found initrd at 0x%lx:0x%lx\n", initrd_start, initrd_end);
386 387
387 DBG(" <- check_for_initrd()\n"); 388 DBG(" <- check_for_initrd()\n");
388#endif /* CONFIG_BLK_DEV_INITRD */ 389#endif /* CONFIG_BLK_DEV_INITRD */