md/raid5: make sure a reshape restarts at the correct address.
[safe/jmp/linux-2.6] / drivers / staging / epl / global.h
index b5902da..8c52d97 100644 (file)
 #define _GLOBAL_H_
 
 
-#ifndef QWORD
-#define QWORD long long int
-#endif
-
-    // ------------------ GNUC for I386 ---------------------------------------------
-
-#define HWACC                  // hardware access through external memory (i.e. CAN)
-
-#define MEM                    // Memory attribute to optimize speed and code of pointer access.
-
-#ifndef CONST
-#define CONST const            // variables mapped to ROM (i.e. flash)
-#endif
-
-#define REENTRANT
-
 #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 ---
-#ifndef BYTE
-#define BYTE unsigned char
-#endif
-#ifndef WORD
-#define WORD unsigned short int
-#endif
-#ifndef DWORD
-#define DWORD unsigned long int
-#endif
+// --- logic types ---
 #ifndef BOOL
 #define BOOL unsigned char
 #endif
-    // --- alias types ---
+
+// --- alias types ---
 #ifndef TRUE
 #define TRUE  0xFF
 #endif