vserver 2.0 rc7
[linux-2.6.git] / drivers / video / logo / logo.c
index 0ba8d34..77b6220 100644 (file)
@@ -12,6 +12,7 @@
 #include <linux/config.h>
 #include <linux/linux_logo.h>
 #include <linux/stddef.h>
+#include <linux/module.h>
 
 #ifdef CONFIG_M68K
 #include <asm/setup.h>
@@ -66,8 +67,10 @@ const struct linux_logo *fb_find_logo(int depth)
                logo = &logo_linux_clut224;
 #endif
 #ifdef CONFIG_LOGO_DEC_CLUT224
-               /* DEC Linux logo on MIPS/MIPS64 */
+               /* DEC Linux logo on MIPS/MIPS64 or ALPHA */
+#ifndef CONFIG_ALPHA
                if (mips_machgroup == MACH_GROUP_DEC)
+#endif
                        logo = &logo_dec_clut224;
 #endif
 #ifdef CONFIG_LOGO_MAC_CLUT224
@@ -97,4 +100,4 @@ const struct linux_logo *fb_find_logo(int depth)
        }
        return logo;
 }
-
+EXPORT_SYMBOL_GPL(fb_find_logo);