summaryrefslogtreecommitdiff
path: root/tools/mtd-utils/patches/300-libfec_use_standard_unsigned_long.patch
diff options
context:
space:
mode:
authorImre Kaloz <kaloz@openwrt.org>2015-05-26 09:25:30 +0000
committerImre Kaloz <kaloz@openwrt.org>2015-05-26 09:25:30 +0000
commitdf23709f165b2e74e398080f1c0706d011263412 (patch)
tree1bbf1d4e62b578079cdbf955f01c34c337afe837 /tools/mtd-utils/patches/300-libfec_use_standard_unsigned_long.patch
parenta621b8c28404c402cf4b42e9b0b28a76b98fae0e (diff)
downloadmtk-20170518-df23709f165b2e74e398080f1c0706d011263412.zip
mtk-20170518-df23709f165b2e74e398080f1c0706d011263412.tar.gz
mtk-20170518-df23709f165b2e74e398080f1c0706d011263412.tar.bz2
tools/mtd-utils: upgrade to latest git
Signed-off-by: Imre Kaloz <kaloz@openwrt.org> SVN-Revision: 45760
Diffstat (limited to 'tools/mtd-utils/patches/300-libfec_use_standard_unsigned_long.patch')
-rw-r--r--tools/mtd-utils/patches/300-libfec_use_standard_unsigned_long.patch35
1 files changed, 35 insertions, 0 deletions
diff --git a/tools/mtd-utils/patches/300-libfec_use_standard_unsigned_long.patch b/tools/mtd-utils/patches/300-libfec_use_standard_unsigned_long.patch
new file mode 100644
index 0000000..73a68b5
--- /dev/null
+++ b/tools/mtd-utils/patches/300-libfec_use_standard_unsigned_long.patch
@@ -0,0 +1,35 @@
+--- a/lib/libfec.c
++++ b/lib/libfec.c
+@@ -61,8 +61,6 @@ struct timeval {
+ };
+ #define gettimeofday(x, dummy) { (x)->ticks = clock() ; }
+ #define DIFF_T(a,b) (1+ 1000000*(a.ticks - b.ticks) / CLOCKS_PER_SEC )
+-typedef unsigned long u_long ;
+-typedef unsigned short u_short ;
+ #else /* typically, unix systems */
+ #include <sys/time.h>
+ #define DIFF_T(a,b) \
+@@ -75,12 +73,12 @@ typedef unsigned short u_short ;
+ t = x.tv_usec + 1000000* (x.tv_sec & 0xff ) ; \
+ }
+ #define TOCK(t) \
+- { u_long t1 ; TICK(t1) ; \
++ { unsigned long t1 ; TICK(t1) ; \
+ if (t1 < t) t = 256000000 + t1 - t ; \
+ else t = t1 - t ; \
+ if (t == 0) t = 1 ;}
+
+-u_long ticks[10]; /* vars for timekeeping */
++unsigned long ticks[10]; /* vars for timekeeping */
+ #else
+ #define DEB(x)
+ #define DDB(x)
+@@ -625,7 +623,7 @@ init_fec(void)
+ #define FEC_MAGIC 0xFECC0DEC
+
+ struct fec_parms {
+- u_long magic ;
++ unsigned long magic ;
+ int k, n ; /* parameters of the code */
+ gf *enc_matrix ;
+ } ;