From: Greg Kroah-Hartman Date: Mon, 23 Mar 2009 19:21:08 +0000 (-0700) Subject: Staging: epl: remove some unused types X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=e6cc5eac8a823fb9674f46cd5050d607009b4a72;p=linux-beck.git Staging: epl: remove some unused types SHORT, USHORT, INT, UINT, LONG, and ULONG aren't used, so delete them. Cc: Daniel Krueger Cc: Ronald Sieber Signed-off-by: Greg Kroah-Hartman --- 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