aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Romer <benjamin.romer@unisys.com>2014-07-31 12:00:57 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-08-01 17:38:45 -0400
commit87b7307ae1a3df1f474d4cc7deecc641862d0b87 (patch)
treece1ce7a54c0df04c9fdcf22a3305d51609177d1f
parentf6f7005abe631dc207089256112099390da00969 (diff)
staging: unisys: remove unused defines from commontypes.h
Delete #defines that aren't used anywhere. Signed-off-by: Benjamin Romer <benjamin.romer@unisys.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/staging/unisys/include/commontypes.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/staging/unisys/include/commontypes.h b/drivers/staging/unisys/include/commontypes.h
index 2aac0ddeaffb..b569c348d0f8 100644
--- a/drivers/staging/unisys/include/commontypes.h
+++ b/drivers/staging/unisys/include/commontypes.h
@@ -34,10 +34,7 @@
34typedef u64 GUEST_PHYSICAL_ADDRESS; 34typedef u64 GUEST_PHYSICAL_ADDRESS;
35 35
36#define MEMSET(ptr, val, len) memset(ptr, val, len) 36#define MEMSET(ptr, val, len) memset(ptr, val, len)
37#define MEMCMP(m1, m2, len) memcmp(m1, m2, len)
38#define MEMCMP_IO(m1, m2, len) memcmp((void __force *)m1, m2, len) 37#define MEMCMP_IO(m1, m2, len) memcmp((void __force *)m1, m2, len)
39#define STRLEN(s) ((UINTN)strlen((const char *)s))
40#define STRCPY(d, s) (strcpy((char *)d, (const char *)s))
41 38
42#define INLINE inline 39#define INLINE inline
43#define OFFSETOF offsetof 40#define OFFSETOF offsetof