Skip to content

Commit

Permalink
lib/decompress.c: fix initconst
Browse files Browse the repository at this point in the history
Signed-off-by: Andi Kleen <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
Andi Kleen authored and torvalds committed May 1, 2013
1 parent e12a95f commit 6f9982b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/decompress.c
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ struct compress_format {
decompress_fn decompressor;
};

static const struct compress_format compressed_formats[] __initdata = {
static const struct compress_format compressed_formats[] __initconst = {
{ {037, 0213}, "gzip", gunzip },
{ {037, 0236}, "gzip", gunzip },
{ {0x42, 0x5a}, "bzip2", bunzip2 },
Expand Down

0 comments on commit 6f9982b

Please sign in to comment.