]> git.hungrycats.org Git - linux/commitdiff
[PATCH] allow penguin with SGI logo for visws
authorAndrey Panin <pazke@orbita1.ru>
Fri, 4 Apr 2003 12:16:13 +0000 (04:16 -0800)
committerLinus Torvalds <torvalds@home.transmeta.com>
Fri, 4 Apr 2003 12:16:13 +0000 (04:16 -0800)
Visual Workstations 320/540 are SGI products, so IMHO they can use
penguin with SGI logo as mips does :))

drivers/video/logo/Kconfig
drivers/video/logo/logo.c

index a410bbcbaae8a2aedcd1ee96c153d7dd19ced092..bdf4e4a68141c7dddb54ebc4bee37d3d5c45e4aa 100644 (file)
@@ -40,7 +40,7 @@ config LOGO_PARISC_CLUT224
 
 config LOGO_SGI_CLUT224
        bool "224-color SGI Linux logo"
-       depends on LOGO && (SGI_IP22 || SGI_IP27 || SGI_IP32)
+       depends on LOGO && (SGI_IP22 || SGI_IP27 || SGI_IP32 || X86_VISWS)
        default y
 
 config LOGO_SUN_CLUT224
index cf0fb46668240490e21954cbb096cc5047df7a64..a93ad7cbfb25a182e53e28b2dbd12e4fa08bedd8 100644 (file)
@@ -80,8 +80,10 @@ const struct linux_logo * __init fb_find_logo(int type)
                        logo = &logo_parisc_clut224;
 #endif
 #ifdef CONFIG_LOGO_SGI_CLUT224
-                       /* SGI Linux logo on MIPS/MIPS64 */
+                       /* SGI Linux logo on MIPS/MIPS64 ans VisWs 320/540 */
+#ifndef CONFIG_X86_VISWS
                        if (mips_machgroup == MACH_GROUP_SGI)
+#endif
                                logo = &logo_sgi_clut224;
 #endif
 #ifdef CONFIG_LOGO_SUN_CLUT224