nios2: add screen_info
authorLey Foon Tan <ley.foon.tan@intel.com>
Wed, 7 Dec 2016 07:44:19 +0000 (15:44 +0800)
committerLey Foon Tan <ley.foon.tan@intel.com>
Tue, 13 Dec 2016 09:13:17 +0000 (17:13 +0800)
Fix build error when enable VGA console.

drivers/video/console/vgacon.c:586: undefined reference to `screen_info'

Signed-off-by: Ley Foon Tan <ley.foon.tan@intel.com>
arch/nios2/kernel/setup.c

index a4ff86d58d5cd74c5319e1042622dd2a58345291..a3fa80d1aacc2dafc45c71588603935c6f6c479e 100644 (file)
@@ -18,6 +18,7 @@
 #include <linux/bootmem.h>
 #include <linux/initrd.h>
 #include <linux/of_fdt.h>
+#include <linux/screen_info.h>
 
 #include <asm/mmu_context.h>
 #include <asm/sections.h>
@@ -36,6 +37,10 @@ static struct pt_regs fake_regs = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
                                        0, 0, 0, 0, 0, 0,
                                        0};
 
+#ifdef CONFIG_VT
+struct screen_info screen_info;
+#endif
+
 /* Copy a short hook instruction sequence to the exception address */
 static inline void copy_exception_handler(unsigned int addr)
 {