diff options
author | Geert Uytterhoeven <Geert.Uytterhoeven@sonycom.com> | 2009-06-16 18:34:19 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-06-16 22:47:57 -0400 |
commit | ae52bb2384f721562f15f719de1acb8e934733cb (patch) | |
tree | 099e280e526a9aa3f8b44975b4494bd364c21861 /drivers | |
parent | a53c9d5b7115173fba9f82ff8120b624ef206f48 (diff) |
fbdev: move logo externs to header file
Now we have __initconst, we can finally move the external declarations for
the various Linux logo structures to <linux/linux_logo.h>.
James' ack dates back to the previous submission (way to long ago), when the
logos were still __initdata, which caused failures on some platforms with some
toolchain versions.
Signed-off-by: Geert Uytterhoeven <Geert.Uytterhoeven@sonycom.com>
Acked-by: James Simmons <jsimmons@infradead.org>
Cc: Krzysztof Helt <krzysztof.h1@poczta.fm>
Cc: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/video/logo/logo.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/drivers/video/logo/logo.c b/drivers/video/logo/logo.c index 2e85a2b52d05..ea7a8ccc830c 100644 --- a/drivers/video/logo/logo.c +++ b/drivers/video/logo/logo.c | |||
@@ -21,21 +21,6 @@ | |||
21 | #include <asm/bootinfo.h> | 21 | #include <asm/bootinfo.h> |
22 | #endif | 22 | #endif |
23 | 23 | ||
24 | extern const struct linux_logo logo_linux_mono; | ||
25 | extern const struct linux_logo logo_linux_vga16; | ||
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; | ||
29 | extern const struct linux_logo logo_dec_clut224; | ||
30 | extern const struct linux_logo logo_mac_clut224; | ||
31 | extern const struct linux_logo logo_parisc_clut224; | ||
32 | extern const struct linux_logo logo_sgi_clut224; | ||
33 | extern const struct linux_logo logo_sun_clut224; | ||
34 | extern const struct linux_logo logo_superh_mono; | ||
35 | extern const struct linux_logo logo_superh_vga16; | ||
36 | extern const struct linux_logo logo_superh_clut224; | ||
37 | extern const struct linux_logo logo_m32r_clut224; | ||
38 | |||
39 | static int nologo; | 24 | static int nologo; |
40 | module_param(nologo, bool, 0); | 25 | module_param(nologo, bool, 0); |
41 | MODULE_PARM_DESC(nologo, "Disables startup logo"); | 26 | MODULE_PARM_DESC(nologo, "Disables startup logo"); |