diff options
author | Arnd Bergmann <[email protected]> | 2023-10-24 07:44:02 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2023-10-24 08:54:37 +0200 |
commit | b0eaf27f202813f28af77e33e80ec0f05a34df01 (patch) | |
tree | 1657f27539c90b9bd226bbb912b3700708beec29 | |
parent | 936323f8de4139c9f6ebc0d08e20f1fe200b78a8 (diff) |
vgacon: fix mips/sibyte build regression
The conversion to vgacon_register_screen() was missing an #include statement
for the swarm board:
arch/mips/sibyte/swarm/setup.c:146:9: error: implicit declaration of function 'vgacon_register_screen' [-Werror=implicit-function-declaration]
Reported-by: kernel test robot <[email protected]>
Closes: https://lore.kernel.org/oe-kbuild-all/[email protected]/
Fixes: 555624c0d10b vgacon: clean up global screen_info instances
Signed-off-by: Arnd Bergmann <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r-- | arch/mips/sibyte/swarm/setup.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/mips/sibyte/swarm/setup.c b/arch/mips/sibyte/swarm/setup.c index 74e7c242b690..38c90b5e8754 100644 --- a/arch/mips/sibyte/swarm/setup.c +++ b/arch/mips/sibyte/swarm/setup.c @@ -13,6 +13,7 @@ #include <linux/memblock.h> #include <linux/init.h> #include <linux/kernel.h> +#include <linux/console.h> #include <linux/screen_info.h> #include <linux/initrd.h> |