Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

newport_con: depend on LOGO_LINUX_CLUT224 instead of LOGO_SGI_CLUT224

newport_show_logo() is only activated if CONFIG_LOGO_SGI_CLUT224 is
set (otherwise it is a NOP). This configuration item will be removed
in an upcoming change so instead, make it depend on LOGO_LINUX_CLUT224.

Signed-off-by: Vincent Mailhol <mailhol@kernel.org>
Signed-off-by: Helge Deller <deller@gmx.de>

authored by

Vincent Mailhol and committed by
Helge Deller
555cdf52 dfa6ce63

+2 -2
+2 -2
drivers/video/console/newport_con.c
··· 95 95 96 96 static const struct linux_logo *newport_show_logo(void) 97 97 { 98 - #ifdef CONFIG_LOGO_SGI_CLUT224 98 + #ifdef CONFIG_LOGO_LINUX_CLUT224 99 99 const struct linux_logo *logo = fb_find_logo(8); 100 100 const unsigned char *clut; 101 101 const unsigned char *data; ··· 127 127 return logo; 128 128 #else 129 129 return NULL; 130 - #endif /* CONFIG_LOGO_SGI_CLUT224 */ 130 + #endif /* CONFIG_LOGO_LINUX_CLUT224 */ 131 131 } 132 132 133 133 static inline void newport_clear_screen(int xstart, int ystart, int xend,