Commit 1b0b1807 authored by topjohnwu's avatar topjohnwu

Fix COMPRESSED macro

Fix #3383
parent 0d11f73a
...@@ -25,7 +25,7 @@ typedef enum { ...@@ -25,7 +25,7 @@ typedef enum {
DTB, DTB,
} format_t; } format_t;
#define COMPRESSED(fmt) ((fmt) >= GZIP && (fmt) <= LZ4_LEGACY) #define COMPRESSED(fmt) ((fmt) >= GZIP && (fmt) < LZOP)
#define COMPRESSED_ANY(fmt) ((fmt) >= GZIP && (fmt) <= LZOP) #define COMPRESSED_ANY(fmt) ((fmt) >= GZIP && (fmt) <= LZOP)
#define BOOT_MAGIC "ANDROID!" #define BOOT_MAGIC "ANDROID!"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment