diff options
author | Amerigo Wang <amwang@redhat.com> | 2011-01-19 06:24:02 +0000 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2011-01-25 15:10:21 +0900 |
commit | 63b1dd07fa378f2683ad03e543c36ec76f489364 (patch) | |
tree | ea5cf6d00b41e9bc2975bf4f845efe1e14f07a60 /drivers/video/console | |
parent | 5dc1365cefb6bd8770d54a2154097445c30fe4bc (diff) | |
download | linux-3.10-63b1dd07fa378f2683ad03e543c36ec76f489364.tar.gz linux-3.10-63b1dd07fa378f2683ad03e543c36ec76f489364.tar.bz2 linux-3.10-63b1dd07fa378f2683ad03e543c36ec76f489364.zip |
video: fix some comments in drivers/video/console/vgacon.c
Now vgacon_scrollback_startup() uses slab, not bootmem,
the comment above it is obsolete, so does __init_refok.
Signed-off-by: WANG Cong <amwang@redhat.com>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'drivers/video/console')
-rw-r--r-- | drivers/video/console/vgacon.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/video/console/vgacon.c b/drivers/video/console/vgacon.c index c97491b8b39..915fd74da7a 100644 --- a/drivers/video/console/vgacon.c +++ b/drivers/video/console/vgacon.c @@ -202,11 +202,7 @@ static void vgacon_scrollback_init(int pitch) } } -/* - * Called only duing init so call of alloc_bootmen is ok. - * Marked __init_refok to silence modpost. - */ -static void __init_refok vgacon_scrollback_startup(void) +static void vgacon_scrollback_startup(void) { vgacon_scrollback = kcalloc(CONFIG_VGACON_SOFT_SCROLLBACK_SIZE, 1024, GFP_NOWAIT); vgacon_scrollback_init(vga_video_num_columns * 2); |