summaryrefslogtreecommitdiff
path: root/nuttx/binfmt/libnxflat/libnxflat_verify.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/binfmt/libnxflat/libnxflat_verify.c')
-rw-r--r--nuttx/binfmt/libnxflat/libnxflat_verify.c13
1 files changed, 1 insertions, 12 deletions
diff --git a/nuttx/binfmt/libnxflat/libnxflat_verify.c b/nuttx/binfmt/libnxflat/libnxflat_verify.c
index db1069e9f..b1ca85330 100644
--- a/nuttx/binfmt/libnxflat/libnxflat_verify.c
+++ b/nuttx/binfmt/libnxflat/libnxflat_verify.c
@@ -67,8 +67,6 @@
int nxflat_verifyheader(const struct nxflat_hdr_s *header)
{
- uint16 revision;
-
if (!header)
{
bdbg("NULL NXFLAT header!");
@@ -88,15 +86,6 @@ int nxflat_verifyheader(const struct nxflat_hdr_s *header)
header->h_magic[2], header->h_magic[3]);
return -ENOEXEC;
}
-
- /* Complain a little more if the version does not match. */
-
- revision = ntohs(header->h_rev);
- if (revision != NXFLAT_VERSION_CURRENT)
- {
- bdbg("Unsupported NXFLAT version=%d\n", revision);
- return -ENOEXEC;
- }
- return 0;
+ return OK;
}