diff options
author | Antonino A. Daplas | 2006-06-26 09:27:17 +0200 |
---|---|---|
committer | Linus Torvalds | 2006-06-26 18:58:34 +0200 |
commit | b877a96409a3a99f2ce27b3c6473c9b28298ac7c (patch) | |
tree | 4bd3772e0dfd8613e19606bcf5a5771822f3bac6 /drivers/video/console | |
parent | [PATCH] VT binding: Make promcon support binding (diff) | |
download | kernel-qcow2-linux-b877a96409a3a99f2ce27b3c6473c9b28298ac7c.tar.gz kernel-qcow2-linux-b877a96409a3a99f2ce27b3c6473c9b28298ac7c.tar.xz kernel-qcow2-linux-b877a96409a3a99f2ce27b3c6473c9b28298ac7c.zip |
[PATCH] VT binding: Make sticon support binding
Do not mark sticon_startup() as __init
Signed-off-by: Antonino Daplas <adaplas@pol.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/video/console')
-rw-r--r-- | drivers/video/console/sticon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/console/sticon.c b/drivers/video/console/sticon.c index fd5940f41271..45c4f227e56e 100644 --- a/drivers/video/console/sticon.c +++ b/drivers/video/console/sticon.c @@ -75,7 +75,7 @@ static inline void cursor_undrawn(void) cursor_drawn = 0; } -static const char *__init sticon_startup(void) +static const char *sticon_startup(void) { return "STI console"; } |