mirror of
https://github.com/torvalds/linux.git
synced 2026-03-08 06:04:44 +01:00
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>
This commit is contained in:
parent
dfa6ce636c
commit
555cdf5242
1 changed files with 2 additions and 2 deletions
|
|
@ -95,7 +95,7 @@ static inline void newport_init_cmap(void)
|
|||
|
||||
static const struct linux_logo *newport_show_logo(void)
|
||||
{
|
||||
#ifdef CONFIG_LOGO_SGI_CLUT224
|
||||
#ifdef CONFIG_LOGO_LINUX_CLUT224
|
||||
const struct linux_logo *logo = fb_find_logo(8);
|
||||
const unsigned char *clut;
|
||||
const unsigned char *data;
|
||||
|
|
@ -127,7 +127,7 @@ static const struct linux_logo *newport_show_logo(void)
|
|||
return logo;
|
||||
#else
|
||||
return NULL;
|
||||
#endif /* CONFIG_LOGO_SGI_CLUT224 */
|
||||
#endif /* CONFIG_LOGO_LINUX_CLUT224 */
|
||||
}
|
||||
|
||||
static inline void newport_clear_screen(int xstart, int ystart, int xend,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue