From 0b313dbe8d994dcb70ac7dc7fa6059fa50409312 Mon Sep 17 00:00:00 2001 From: Stephen Rothwell Date: Tue, 30 Jun 2009 11:41:15 -0700 Subject: [PATCH] --- yaml --- r: 154581 b: refs/heads/master c: 15e3252464432a29c5461325cb5243471bd2a219 h: refs/heads/master i: 154579: d2ed18d78918fb93faac734b1e8d5ab1550fa497 v: v3 --- [refs] | 2 +- trunk/scripts/pnmtologo.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/[refs] b/[refs] index e5524a082672..e025f42bc4ee 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: c15e504bd008aedfcd2219051055b66bffdb6148 +refs/heads/master: 15e3252464432a29c5461325cb5243471bd2a219 diff --git a/trunk/scripts/pnmtologo.c b/trunk/scripts/pnmtologo.c index 64f5ddb09ea6..5c113123ed9f 100644 --- a/trunk/scripts/pnmtologo.c +++ b/trunk/scripts/pnmtologo.c @@ -237,7 +237,7 @@ static void write_header(void) fprintf(out, " * Linux logo %s\n", logoname); fputs(" */\n\n", out); fputs("#include \n\n", out); - fprintf(out, "static const unsigned char %s_data[] __initconst = {\n", + fprintf(out, "static unsigned char %s_data[] __initdata = {\n", logoname); } @@ -374,7 +374,7 @@ static void write_logo_clut224(void) fputs("\n};\n\n", out); /* write logo clut */ - fprintf(out, "static const unsigned char %s_clut[] __initconst = {\n", + fprintf(out, "static unsigned char %s_clut[] __initdata = {\n", logoname); write_hex_cnt = 0; for (i = 0; i < logo_clutsize; i++) {