From: Alexander Beregalov Date: Sat, 2 Aug 2008 23:03:57 +0000 (+0400) Subject: drivers/video/console/promcon.c: fix build error X-Git-Tag: firefly_0821_release~18452^2 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=cf368d2f9aced8adc8bd6b1f04294a71551d5fce;p=firefly-linux-kernel-4.4.55.git drivers/video/console/promcon.c: fix build error drivers/video/console/promcon.c:158: error: implicit declaration of function 'con_protect_unimap' Introduced by commit a29ccf6f823a84d89e1c7aaaf221cf7282022024 ("embedded: fix vc_translate operator precedence"). Signed-off-by: Alexander Beregalov Cc: Tim Bird Signed-off-by: David Woodhouse --- diff --git a/include/linux/vt_kern.h b/include/linux/vt_kern.h index 8c8119ffee12..1c78d56c57e5 100644 --- a/include/linux/vt_kern.h +++ b/include/linux/vt_kern.h @@ -86,6 +86,7 @@ int con_copy_unimap(struct vc_data *dst_vc, struct vc_data *src_vc); #define con_copy_unimap(d, s) (0) #define con_get_unimap(vc, ct, uct, list) (-EINVAL) #define con_free_unimap(vc) do { ; } while (0) +#define con_protect_unimap(vc, rdonly) do { ; } while (0) #define vc_translate(vc, c) (c) #endif