From f813a693fd5e07c60c042a0b11ae8e15144fc960 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Mon, 19 Jul 2010 22:20:07 +0000 Subject: nvram: handle nvram at varying offsets within the eraseblock (fixes Edimax PS-1208mfg with FLSH at offset 0) SVN-Revision: 22299 --- package/nvram/src/nvram.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'package/nvram/src/nvram.h') diff --git a/package/nvram/src/nvram.h b/package/nvram/src/nvram.h index e3d64613d4..c72f67e9a8 100644 --- a/package/nvram/src/nvram.h +++ b/package/nvram/src/nvram.h @@ -46,7 +46,8 @@ struct nvram_tuple { struct nvram_handle { int fd; char *mmap; - unsigned long length; + unsigned int length; + unsigned int offset; struct nvram_tuple *nvram_hash[257]; struct nvram_tuple *nvram_dead; }; @@ -113,7 +114,6 @@ char * nvram_find_staging(void); /* NVRAM constants */ #define NVRAM_SPACE 0x8000 -#define NVRAM_START(x) x - NVRAM_SPACE #define NVRAM_MAGIC 0x48534C46 /* 'FLSH' */ #define NVRAM_VERSION 1 -- cgit v1.2.3