diff options
author | Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> | 2011-05-04 00:39:50 +0000 |
---|---|---|
committer | Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> | 2011-05-04 00:39:50 +0000 |
commit | 0c08e68992d42a8e07cccdcd69fc813a45874caf (patch) | |
tree | 7d92a35b73cef6e339d3dfe1d3635c5843250046 /print_wiki.c | |
parent | 20c9ed251c13ab15014c75a0e313cc6935e4bf55 (diff) | |
download | flashrom-0c08e68992d42a8e07cccdcd69fc813a45874caf.zip flashrom-0c08e68992d42a8e07cccdcd69fc813a45874caf.tar.gz |
Constify flashchips array
This moves 99.5% of the .data section to .rodata (which ends up in .text).
Corresponding to flashrom svn r1293.
Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
Acked-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'print_wiki.c')
-rw-r--r-- | print_wiki.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/print_wiki.c b/print_wiki.c index 8b13f70..6c40ec6 100644 --- a/print_wiki.c +++ b/print_wiki.c @@ -201,7 +201,7 @@ static void print_supported_boards_wiki(void) static void print_supported_chips_wiki(int cols) { int i = 0, c = 1, chipcount = 0; - struct flashchip *f, *old = NULL; + const struct flashchip *f, *old = NULL; uint32_t t; for (f = flashchips; f->name != NULL; f++) |