aboutsummaryrefslogtreecommitdiffstats
path: root/package/kernel/lantiq/ltq-vdsl-fw/src/LzmaTypes.h
diff options
context:
space:
mode:
authorJohn Crispin <john@openwrt.org>2015-12-11 15:05:40 +0000
committerJohn Crispin <john@openwrt.org>2015-12-11 15:05:40 +0000
commit0938233fcdef67d969f9429a10761cc640c6d56d (patch)
tree7ccad7e4c703260f288aeff5b8232b387fa7cc84 /package/kernel/lantiq/ltq-vdsl-fw/src/LzmaTypes.h
parent787120e3a3e3cfdf26efc22c652743f5d91840fd (diff)
downloadupstream-0938233fcdef67d969f9429a10761cc640c6d56d.tar.gz
upstream-0938233fcdef67d969f9429a10761cc640c6d56d.tar.bz2
upstream-0938233fcdef67d969f9429a10761cc640c6d56d.zip
lantiq: get rid of ltq-vdsl-fw
Because of dsl-vrx200-firmware-xdsl-* there's no need anymore to download a dsl firmware at runtime. Signed-off-by: Andre Heider <a.heider@gmail.com> SVN-Revision: 47851
Diffstat (limited to 'package/kernel/lantiq/ltq-vdsl-fw/src/LzmaTypes.h')
-rw-r--r--package/kernel/lantiq/ltq-vdsl-fw/src/LzmaTypes.h45
1 files changed, 0 insertions, 45 deletions
diff --git a/package/kernel/lantiq/ltq-vdsl-fw/src/LzmaTypes.h b/package/kernel/lantiq/ltq-vdsl-fw/src/LzmaTypes.h
deleted file mode 100644
index 9c27290757..0000000000
--- a/package/kernel/lantiq/ltq-vdsl-fw/src/LzmaTypes.h
+++ /dev/null
@@ -1,45 +0,0 @@
-/*
-LzmaTypes.h
-
-Types for LZMA Decoder
-
-This file written and distributed to public domain by Igor Pavlov.
-This file is part of LZMA SDK 4.40 (2006-05-01)
-*/
-
-#ifndef __LZMATYPES_H
-#define __LZMATYPES_H
-
-#ifndef _7ZIP_BYTE_DEFINED
-#define _7ZIP_BYTE_DEFINED
-typedef unsigned char Byte;
-#endif
-
-#ifndef _7ZIP_UINT16_DEFINED
-#define _7ZIP_UINT16_DEFINED
-typedef unsigned short UInt16;
-#endif
-
-#ifndef _7ZIP_UINT32_DEFINED
-#define _7ZIP_UINT32_DEFINED
-#ifdef _LZMA_UINT32_IS_ULONG
-typedef unsigned long UInt32;
-#else
-typedef unsigned int UInt32;
-#endif
-#endif
-
-/* #define _LZMA_NO_SYSTEM_SIZE_T */
-/* You can use it, if you don't want <stddef.h> */
-
-#ifndef _7ZIP_SIZET_DEFINED
-#define _7ZIP_SIZET_DEFINED
-#ifdef _LZMA_NO_SYSTEM_SIZE_T
-typedef UInt32 SizeT;
-#else
-#include <stddef.h>
-typedef size_t SizeT;
-#endif
-#endif
-
-#endif