diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2009-03-23 12:21:08 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-04-03 14:54:21 -0700 |
commit | e6cc5eac8a823fb9674f46cd5050d607009b4a72 (patch) | |
tree | a6a769f75d7d475ca0bd20c8316b519e9f284036 /drivers/staging/epl/global.h | |
parent | c7c38309e4709b4cce4b9c6373e7f1dd7d2d8c8c (diff) |
Staging: epl: remove some unused types
SHORT, USHORT, INT, UINT, LONG, and ULONG aren't used, so delete them.
Cc: Daniel Krueger <daniel.krueger@systec-electronic.com>
Cc: Ronald Sieber <Ronald.Sieber@systec-electronic.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/epl/global.h')
-rw-r--r-- | drivers/staging/epl/global.h | 23 |
1 files changed, 3 insertions, 20 deletions
diff --git a/drivers/staging/epl/global.h b/drivers/staging/epl/global.h index ba5cf3201bdf..31ea536e48b9 100644 --- a/drivers/staging/epl/global.h +++ b/drivers/staging/epl/global.h @@ -33,25 +33,7 @@ #define TRACE printk -#ifndef SHORT -#define SHORT short int -#endif -#ifndef USHORT -#define USHORT unsigned short int -#endif -#ifndef INT -#define INT int -#endif -#ifndef UINT -#define UINT unsigned int -#endif -#ifndef LONG -#define LONG long int -#endif -#ifndef ULONG -#define ULONG unsigned long int -#endif - // --- logic types --- +// --- logic types --- #ifndef BYTE #define BYTE unsigned char #endif @@ -64,7 +46,8 @@ #ifndef BOOL #define BOOL unsigned char #endif - // --- alias types --- + +// --- alias types --- #ifndef TRUE #define TRUE 0xFF #endif |