diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2008-05-17 10:01:05 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2008-05-17 10:01:05 -0400 |
commit | 0e50a4c6ab94ffe7e5515b86b5df9e5abc8c6b13 (patch) | |
tree | 3c688483e71261f564fc43be3157b337ae340dca /drivers/video/logo/logo.c | |
parent | 34b2cd5b688b012975fcfc3b3970fc3508fa82c4 (diff) | |
parent | f26a3988917913b3d11b2bd741601a2c64ab9204 (diff) |
Merge branch 'linus' into x86/pebs
Diffstat (limited to 'drivers/video/logo/logo.c')
-rw-r--r-- | drivers/video/logo/logo.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/drivers/video/logo/logo.c b/drivers/video/logo/logo.c index fc72684aae5a..2e85a2b52d05 100644 --- a/drivers/video/logo/logo.c +++ b/drivers/video/logo/logo.c | |||
@@ -24,6 +24,8 @@ | |||
24 | extern const struct linux_logo logo_linux_mono; | 24 | extern const struct linux_logo logo_linux_mono; |
25 | extern const struct linux_logo logo_linux_vga16; | 25 | extern const struct linux_logo logo_linux_vga16; |
26 | extern const struct linux_logo logo_linux_clut224; | 26 | extern const struct linux_logo logo_linux_clut224; |
27 | extern const struct linux_logo logo_blackfin_vga16; | ||
28 | extern const struct linux_logo logo_blackfin_clut224; | ||
27 | extern const struct linux_logo logo_dec_clut224; | 29 | extern const struct linux_logo logo_dec_clut224; |
28 | extern const struct linux_logo logo_mac_clut224; | 30 | extern const struct linux_logo logo_mac_clut224; |
29 | extern const struct linux_logo logo_parisc_clut224; | 31 | extern const struct linux_logo logo_parisc_clut224; |
@@ -65,6 +67,10 @@ const struct linux_logo * __init_refok fb_find_logo(int depth) | |||
65 | /* Generic Linux logo */ | 67 | /* Generic Linux logo */ |
66 | logo = &logo_linux_vga16; | 68 | logo = &logo_linux_vga16; |
67 | #endif | 69 | #endif |
70 | #ifdef CONFIG_LOGO_BLACKFIN_VGA16 | ||
71 | /* Blackfin processor logo */ | ||
72 | logo = &logo_blackfin_vga16; | ||
73 | #endif | ||
68 | #ifdef CONFIG_LOGO_SUPERH_VGA16 | 74 | #ifdef CONFIG_LOGO_SUPERH_VGA16 |
69 | /* SuperH Linux logo */ | 75 | /* SuperH Linux logo */ |
70 | logo = &logo_superh_vga16; | 76 | logo = &logo_superh_vga16; |
@@ -76,6 +82,10 @@ const struct linux_logo * __init_refok fb_find_logo(int depth) | |||
76 | /* Generic Linux logo */ | 82 | /* Generic Linux logo */ |
77 | logo = &logo_linux_clut224; | 83 | logo = &logo_linux_clut224; |
78 | #endif | 84 | #endif |
85 | #ifdef CONFIG_LOGO_BLACKFIN_CLUT224 | ||
86 | /* Blackfin Linux logo */ | ||
87 | logo = &logo_blackfin_clut224; | ||
88 | #endif | ||
79 | #ifdef CONFIG_LOGO_DEC_CLUT224 | 89 | #ifdef CONFIG_LOGO_DEC_CLUT224 |
80 | /* DEC Linux logo on MIPS/MIPS64 or ALPHA */ | 90 | /* DEC Linux logo on MIPS/MIPS64 or ALPHA */ |
81 | logo = &logo_dec_clut224; | 91 | logo = &logo_dec_clut224; |