aboutsummaryrefslogtreecommitdiffstats
path: root/xen/drivers/video
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2009-08-31 10:09:12 +0100
committerKeir Fraser <keir.fraser@citrix.com>2009-08-31 10:09:12 +0100
commit66c5b440e1475fc1ff10197ce5653e669305b82d (patch)
tree4aadb6ca50fd489e7fbc2e9309d9fc9c5b5ab0ce /xen/drivers/video
parent088b657e65d0b35bd27d4cdb6348853b23ba2cb6 (diff)
downloadxen-66c5b440e1475fc1ff10197ce5653e669305b82d.tar.gz
xen-66c5b440e1475fc1ff10197ce5653e669305b82d.tar.bz2
xen-66c5b440e1475fc1ff10197ce5653e669305b82d.zip
properly __initdata-annotate command line option string buffers
Signed-off-by: Jan Beulich <jbeulich@novell.com>
Diffstat (limited to 'xen/drivers/video')
-rw-r--r--xen/drivers/video/vga.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xen/drivers/video/vga.c b/xen/drivers/video/vga.c
index e1828c1687..6a22d6f77a 100644
--- a/xen/drivers/video/vga.c
+++ b/xen/drivers/video/vga.c
@@ -48,7 +48,7 @@ void (*vga_puts)(const char *) = vga_noop_puts;
* after domain 0 starts to boot. The default behaviour is to relinquish
* control of the console to domain 0.
*/
-static char opt_vga[30] = "";
+static char __initdata opt_vga[30] = "";
string_param("vga", opt_vga);
/* VGA text-mode definitions. */