staging: unisys: remove UINTN type
authorBenjamin Romer <benjamin.romer@unisys.com>
Thu, 31 Jul 2014 16:00:58 +0000 (12:00 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 1 Aug 2014 21:38:45 +0000 (14:38 -0700)
This patch removes UINTN from commontypes.h, using u64 in the one spot this
type was used.

Signed-off-by: Benjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/unisys/common-spar/include/channels/channel.h
drivers/staging/unisys/include/commontypes.h

index 99533cf..c1ba1de 100644 (file)
@@ -295,8 +295,8 @@ typedef struct _SIGNAL_QUEUE_HEADER {
                chan->QHDRFLD.Type = typ;                               \
                chan->QHDRFLD.Size = sizeof(chan->QDATAFLD);            \
                chan->QHDRFLD.SignalSize = sizeof(QDATATYPE);           \
-               chan->QHDRFLD.oSignalBase = (UINTN)(chan->QDATAFLD)-    \
-                       (UINTN)(&chan->QHDRFLD);                        \
+               chan->QHDRFLD.oSignalBase = (u64)(chan->QDATAFLD)-      \
+                       (u64)(&chan->QHDRFLD);                          \
                chan->QHDRFLD.MaxSignalSlots =                          \
                        sizeof(chan->QDATAFLD)/sizeof(QDATATYPE);       \
                chan->QHDRFLD.MaxSignals = chan->QHDRFLD.MaxSignalSlots-1; \
index b569c34..7fdf207 100644 (file)
 #include <linux/io.h>
 #include <linux/uuid.h>
 
-#ifdef CONFIG_X86_32
-#define UINTN u32
-#else
-#define UINTN u64
-#endif
-
 typedef u64 GUEST_PHYSICAL_ADDRESS;
 
 #define MEMSET(ptr, val, len) memset(ptr, val, len)